从一个脚本生成 4 linux 终端

spawn 4 linux terminal from one script

我有 4 个 shell 命令,我想 运行 每个单独 shell。

由于每次手动打开4 shells 并输入每个命令,我真的很烦恼,我想知道是否有办法为此编写脚本。

我的命令是:

./supercomponent --cid=111 
./vehicle --cid=111 --freq=10 
./cockpit--cid=111 
./irus --cid=111 --freq=10

您可以将命令嵌套在大括号中,运行 在其自己的执行环境中使用它自己的变量等在后台,即在新的 bash 程序实例中。

( ./supercomponent --cid=111 ) &
( ./vehicle --cid=111 --freq=10 ) &
( ./cockpit--cid=111 ) &
( ./irus --cid=111 --freq=10 )