The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com




Thread: Telnet question
View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #3 (permalink)  
Old 03-10-2008
Smiling Dragon's Avatar
Smiling Dragon Smiling Dragon is offline Forum Advisor  
Disorganised User
  
 

Join Date: Nov 2007
Location: New Zealand
Posts: 922
Or use a shell that supports backgrounding processes (pretty much anything more advanced than sh will do this). Hit ctrl Z then type bg to allow the telnet to continue in the background.

When you are ready to go back to it, type fg.

If you have a few things running and need to pick which one to foreground, type 'jobs' to see all running process associated with this shell, then fg %2 to jump to job number 2 for example.