打开新终端选项卡后如何执行多个命令

How to execute multiple commands after opening a new terminal tab

我需要打开一个新的终端选项卡并在上面执行多个命令,我该怎么做。我已经尝试过以下方法,

gnome-terminal --tab -t "X" -e "cd ~/Desktop/terminal_test;mkdir test"

这里我需要cd到一个新目录,新建一个文件夹。

试试这个:

gnome-terminal -x bash -c "cmd1; cmd2; …cmdN; exec bash"

您可以使用 gnome 终端。下面的脚本将打开 3 个选项卡 运行 各自的命令..

tab="--tab"

cmd01="bash -c 'ls';'pwd';bash"

foo=""

foo+=($tab -e "$cmd01")

gnome-terminal "${foo[@]}"

exit 0