Is it possible??


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Is it possible??
# 8  
Old 08-23-2008
press ctrl + z, it will pause the program... then fire command 'bg'
it will start the program agin in background.
to see program running in background fire commands jobs ,
to bring back the program in foreground fire command fg.
man pages can tell you more on this .. how to bring specific program to for ground .
# 9  
Old 08-23-2008
while :
do
date &
done
# 10  
Old 08-23-2008
man bg
# 11  
Old 08-27-2008
when any process is running stop the process by pressing ^z (ctrl+z). then it gives the job no.
then u can switch it to back ground by typing command bg %job_number (ex: bg %1)
if u want to get it back to foreground type fg %1.
try this...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question