From LQWiki
Disown
Disown is a builtin command in the bash shell to remove jobs from their parent process, allowing them to continue after the parent exits.
Options
Disown has three modes of operation:
Plain 'disown' removes the most recent job from your job list (seen by jobs).
'disown -h' allows you to reconnect to the job later by keeping it in your job list.
'disown -ar' disowns all current jobs.

This page is available under a