Pregunta

I'm trying to run 4 terminal windows at the same time by running one .sh file. My .sh file contains:

xterm -e "command1"

xterm -e "command2"

xterm -e "command3"

xterm -e "command4"

Any help would be much appreciated. THANKS

¿Fue útil?

Solución

append & to each command

xterm -e "command1" &
xterm -e "command2" &
xterm -e "command3" &
xterm -e "command4" &

the '&' puts the job in the background which 'frees' it from your terminal so the next command can run

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top