c******r 发帖数: 38 | 1 怎么写一个批处理实现:
打开一个xterm
然后在刚打开的窗口里执行任务? | u***r 发帖数: 19 | 2 xterm -e commandname
【在 c******r 的大作中提到】 : 怎么写一个批处理实现: : 打开一个xterm : 然后在刚打开的窗口里执行任务?
| c******r 发帖数: 38 | 3 多谢了.可能我没说清楚,
我想写一个shell程序,里面需要打开一个xterm,然后在新窗口里执行
很多命令.怎么实现?
xterm -e commandname似乎只能加一条命令,而且
我运行xterm -e ls似乎什么也得不到,新打开的窗口一闪就没了.
【在 u***r 的大作中提到】 : xterm -e commandname
| d***c 发帖数: 21 | 4 because when "ls" finishes, the xterm is closed. if you do
xterm -e top
you'll see it working.
I think if you need to run multiple command in that xterm window, you need
to invoke a shell there. like xterm -e bash bash_script_file
【在 c******r 的大作中提到】 : 多谢了.可能我没说清楚, : 我想写一个shell程序,里面需要打开一个xterm,然后在新窗口里执行 : 很多命令.怎么实现? : xterm -e commandname似乎只能加一条命令,而且 : 我运行xterm -e ls似乎什么也得不到,新打开的窗口一闪就没了.
|
|