0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

gnome-terminalコマンド実行時にwarning(Option “-e” is deprecated and might be removed in a later version of gnome-terminal.)

Last updated at Posted at 2020-11-20

gnome-terminalコマンド実行時に、以下のようなwarningが出る。(例. xeyes実行)

$ gnome-terminal -e "xeyes"
# Option “-e” is deprecated and might be removed in a later version of gnome-terminal.
# Use “-- ” to terminate the options and put the command line to execute after it.

deprecateということなので、文面の通り-- を挟んで後ろにコマンド指定するとよい

$ gnome-terminal -- xeyes

以下のようにすると、""で囲んだ部分が1つのコマンドと思われるようなので注意

$ gnome-terminal -- "xeyes"

参考

Ubuntu – Option “-e” is deprecated and might be removed in a later version of gnome-terminal

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?