How do I open a new window (shell) from command line in Linux? -
How do I open a new window (shell) from command line in Linux? -
i'm working tool right requires me putty remote host, login, run series of commands start engine, open new window (and login again) start different engine, open 3rd window (and again, login) utilize tool (leaving engines running in first 2 windows). i'd write shell script automate process open 1 window, type "sh whatever.sh" , off , running, without physically opening new windows , logging in again. however, can't find command me 1 window next. thoughts?
you can background first processes adding ampersand (&
) command line or pressing ctrl+z
when running (and come in bg
allow process continue, more info jobs
).
if that's not enough, can create virtual shells screen or tmux.
if you've redirected x (i.e. can access guis on ssh), can start new window executing favorite (gui) console program, xterm
, konsole
, gnome-terminal
, etc.
linux command-line putty
Comments
Post a Comment