我有许多用 编写的服务器Python
。我想运行它们,每个终端选项卡一个脚本。我正在使用Xubuntu 16.04
。
我知道如何在 Bash 脚本中打开 Xubuntu 中的终端选项卡:
#!/bin/bash
xfce4-terminal --tab
另外,我知道如何在 bash 脚本中运行 python 脚本:
#!/bin/bash
python server_1.py
但是我如何打开一个新选项卡,并在这个新打开的选项卡中运行脚本?
答案1
有 -x 和 -e 选项,您试过吗?
-x, --execute
Execute the remainder of the command line inside the terminal
-e, --command=command
Execute command inside the terminal
例如:
xfce4-terminal --tab --execute python server_1.py
如果脚本路径有问题,您可以使用以下命令指定工作目录:
--working-directory=directory