How to send a process to the background
Sending a process to the background in Linux is quite easy. All you need is bg, fg, &, and ctrl+Z ( ^Z ). For this example I will use a simple bash script test.sh I put together to print “Test” every 5 seconds. #!/bin/bash<br /> #This script will print "Test" every 5 seconds<br /> #<br /> while [ true ]<br /> do<br /> echo "Test at `date`"<br /> sleep 5<br /> done<br /> #End ...