我试图通过运行一个.sh文件同时运行4个终端窗口。 我的.sh文件包含:
xterm -e" command1"
xterm -e" command2"
xterm -e" command3"
xterm -e" command4"
非常感谢任何帮助。致谢
答案 0 :(得分:2)
将& 附加到每个命令
xterm -e "command1" &
xterm -e "command2" &
xterm -e "command3" &
xterm -e "command4" &
'&'将作业放在后台,从终端“释放”它,以便下一个命令可以运行