我有4个shell命令,我想在每个单独的shell中运行。
由于每次手动打开4个shell并输入每个命令,我真的很烦恼,我想知道是否有办法为此编写脚本。
我的命令是:
./supercomponent --cid=111
./vehicle --cid=111 --freq=10
./cockpit--cid=111
./irus --cid=111 --freq=10
答案 0 :(得分:0)
您可以将命令嵌套在大括号中,大括号在自己的执行环境中使用自己的变量运行,例如在新的bash程序实例中。
( ./supercomponent --cid=111 ) &
( ./vehicle --cid=111 --freq=10 ) &
( ./cockpit--cid=111 ) &
( ./irus --cid=111 --freq=10 )