标签: bash xterm
我需要编写一个bash脚本,它会生成一个新的xterm窗口并在那里回显一些东西。我试过了echo "hello" | xterm &,这不起作用......此外,是否可以在新的xterm上执行任何命令?
echo "hello" | xterm &
答案 0 :(得分:4)
xterm -e "echo "HELLO"; bash"
将保持窗口打开
答案 1 :(得分:0)
xterm -e echo "hello"。一般来说,xterm -e anyprogram。
xterm -e echo "hello"
xterm -e anyprogram