【发布时间】:2019-09-28 05:02:50
【问题描述】:
到目前为止,我有这个有效的命令
gnome-terminal --tab -e '/bin/bash -c "ls";bash'
但是有一个警告
# 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.
当我把它改成
gnome-terminal --tab -- '/bin/bash -c "ls";bash'
新标签页失败
There was an error creating the child process for this terminal
Failed to execute child process “/bin/bash -c "ls";bash” (No such file or directory)
【问题讨论】:
标签: bash shell ubuntu gnome-terminal