Linux - 从一个sh文件打开多个终端

时间:2014-04-30 16:53:19

标签: terminal command

我试图通过运行一个.sh文件同时运行4个终端窗口。 我的.sh文件包含:

xterm -e" command1"

xterm -e" command2"

xterm -e" command3"

xterm -e" command4"

非常感谢任何帮助。致谢

1 个答案:

答案 0 :(得分:2)

& 附加到每个命令

xterm -e "command1" &
xterm -e "command2" &
xterm -e "command3" &
xterm -e "command4" &
'&'将作业放在后台,从终端“释放”它,以便下一个命令可以运行