我想编写一个shell脚本,在另一个终端窗口中开始运行另一个shell脚本。我应该使用哪个命令在终端中运行以下shell脚本?
#!/bin/sh
#name of this script: install applications.sh
sudo apt-get update # To get the latest package lists
sudo apt-get install docky -y
#etc.
答案 0 :(得分:2)
这取决于您要启动的终端模拟器。以下是两个例子:
xterm -e 'bash applications.sh'
gnome-terminal -e 'bash applications.sh'