A bin folder, holding helpfull scripts and commands
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

terminal_exec 149B

123456789
  1. #!/bin/sh
  2. #
  3. if ! gnome-terminal -- $*; then
  4. if ! konsole -e $*; then
  5. if ! xfce4-terminal -e $*; then
  6. $*
  7. fi
  8. fi
  9. fi