如何打开新的 gnome 终端来启动命令?

如何打开新的 gnome 终端来启动命令?

我试过这个:

x-terminal-emulator --command="printf '新终端模拟器已打开以供输入'"

但它只打开终端窗口而不打印任何内容!

如果我托盘:

gnome-terminal --command="printf '新终端模拟器已打开以供输入'"

它什么也没做!

答案1

尝试:

gnome-terminal -x sh -c 'printf "New terminal emulator is opened for input\n"; exec bash'

来源和更多您可能感兴趣的事情在这里:https://superuser.com/a/198022/755698

另一种选择是:

gnome-terminal   -e 'sh -c "printf \"New terminal emulator is opened for input\n\";sleep 10"'

在第一种情况下,终端将保持打开状态并等待命令...在第二种情况下,终端将等待十秒然后关闭...

相关内容