Difference between revisions of "Disown"

From Linuxintro
imported>ThorstenStaerk
(New page: disown removes a process from its parent process, allowing it to continue after the parent exits. tweedleburg:~ # firefox & [5] 32702 tweedleburg:~ # disown bash: warning: deleting...)
 
imported>ThorstenStaerk
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
disown removes a process from its parent process, allowing it to continue after the parent exits.
+
disown removes a [[process]] from its parent process, allowing it to continue after the parent exits.
 
  tweedleburg:~ # firefox [[&]]
 
  tweedleburg:~ # firefox [[&]]
 
  [5] 32702
 
  [5] 32702
Line 6: Line 6:
 
  [5]  Done                    firefox
 
  [5]  Done                    firefox
 
  tweedleburg:~ # exit
 
  tweedleburg:~ # exit
 +
 +
= See also =
 +
* [[job control]]

Latest revision as of 14:03, 12 January 2014

disown removes a process from its parent process, allowing it to continue after the parent exits.

tweedleburg:~ # firefox &
[5] 32702
tweedleburg:~ # disown
bash: warning: deleting stopped job 1 with process group 18228
[5]   Done                    firefox
tweedleburg:~ # exit

See also