Quantcast
Channel: How to use one terminal with multiple interactive jobs without stopping them? - Unix & Linux Stack Exchange
Browsing all 4 articles
Browse latest View live

Answer by vonbrand for How to use one terminal with multiple interactive jobs...

Use something like screen(1) or tmux(1) to run the equivalent of multiple terminals at the same time. You can even log out ant retake them from elsewhere.Use tabs in e.g. Gnome Terminal.Use job control...

View Article



Answer by bey0nd for How to use one terminal with multiple interactive jobs...

What you're looking for is the job control from Bash. You could read all about it with man bash and searching for 'JOB CONTROL' (type /^JOB CONTROL within the man page of bash). Nevertheless, with...

View Article

Answer by DopeGhoti for How to use one terminal with multiple interactive...

Use screen:$ screen -S my-jobThis will start a new screen session named "my-job" and connect to it.$ ./server.shThis will start your server.sh script on the first (default) terminal attached to the...

View Article

How to use one terminal with multiple interactive jobs without stopping them?

I have two shell-scripts, say client.sh and server.sh, which has to work simultaneously and give some useful output in watch-way.And I am able to use only one terminal. So I should switch between them...

View Article
Browsing all 4 articles
Browse latest View live




Latest Images