-Per eseguire dei job senza occupare la sessione shell aggiungere la e commerciale " & " al fondo: #/usr/sbin/xrsync12.0 & -per vedere l'output prodotto in tempo reale fare il " tail -f " del file che ti interessa #tail -f /var/log/xrsync12.0 -per vedere i batch in background in esecuzione digita #jobs -per ucidere un job in background in esecuzion dopo aver visto la lista con " jobs " usa " kill %numero" jobs #kill %numero -per riportarlo in foreground digita " fg " e poi i tasti " Ctrl " e " z " #fg -per riportarlo in background digita " bg " #bg -esempi [root@www sdb5]# jobs [1]+ Stopped /usr/sbin/xrsync12.0.su.sdb1.sh [2]- Running /usr/sbin/xrsync12.0.su.sdb1.sh & [root@www sdb5]# kill %1 [1]- Terminato /usr/sbin/xrsync12.0.su.sdb1.sh [root@www sdb5]# jobs [2]+ Running /usr/sbin/xrsync12.0.su.sdb1.sh & [root@www sdb5]# fg /usr/sbin/xrsync12.0.su.sdb1.sh ^Z [2]+ Stopped /usr/sbin/xrsync12.0.su.sdb1.sh [root@www sdb5]# bg [2]+ /usr/sbin/xrsync12.0.su.sdb1.sh &