端末名で変数を設定し、その変数を使用して端末をフルスクリーンで開きたいです。次のようになります。
if [ "$DESKTOP" = "gnome" ]; then
if command_exists gnome-terminal; then
terminal=$(gnome-terminal)
fi
elif [ "$DESKTOP" = "mate" ]; then
if command_exists mate-terminal; then
terminal=$(mate-terminal)
fi
fi
$terminal --working-directory="$HOME/code/" --window --full-screen &
これをどのように実行しますか?
答え1
単に$( )
何でも交換してください。
if [ "$DESKTOP" = "gnome" ]; then
if command_exists gnome-terminal; then
terminal=gnome-terminal
fi
elif [ "$DESKTOP" = "mate" ]; then
if command_exists mate-terminal; then
terminal=mate-terminal
fi
fi
$terminal --working-directory="$HOME/code/" --window --full-screen &
$( )
コマンドを実行し、出力を変数またはコマンドラインに貼り付けるために使用されます。
foo端末が定義されていない場合、上記のコードは実行されない可能性があるため、お勧めします。
noterminal=true
if [ "$DESKTOP" = "gnome" ]; then
if command_exists gnome-terminal; then
gnome-terminal --working-directory="$HOME/code/" --window --full-screen &
noterminal=false
fi
elif [ "$DESKTOP" = "mate" ]; then
if command_exists mate-terminal; then
mate-terminal --working-directory="$HOME/code/" --window --full-screen &
noterminal=false
fi
fi
if $noterminal
then
echo unable to find terminal
## or other GUI alert system.
## or xterm as per mmmint sugestion
fi
答え2
私が知っている限り、ほとんどxterm
のLinuxベースのオペレーティングシステムを使用できます。
それにもかかわらず、使用された端末は$TERM
変数にあります。