Google
 
   
Login
Username:

Password:


Lost Password?

Register now!
Search
Main Menu
top books
Polls
What do you think about php-deluxe.net?
Excellent!
Cool
Hmm..not bad
What the hell is this?
encyclopedia
recommendation
compare webbrowser
Freenet DSL
Who's Online
8 user(s) are online (7 user(s) are browsing encyclopedia)

Members: 0
Guests: 8

more...
browser tip
Unix Befehle
manual of unix befehle
recommendation!
Sponsored
partner

Nohup

:

nohup is a Unix command that is used to run another command while suppressing the action of the SIGHUP (hangup) signal, enabling the command to keep running after a user who issues the command has logged out. It is usually used to run commands in background as daemon (computer software)s. Output that would normally go to the terminal goes to a file called nohup.out if it has not already been redirected.

=Example=

$ # Start fetchmail daemon and log out. The daemon will continue in the background. $ nohup fetchmail -d 30 & $ exit