diff --git a/SC2039.md b/SC2039.md index a101bc6..ec2f7bb 100644 --- a/SC2039.md +++ b/SC2039.md @@ -267,6 +267,24 @@ trap my_handler TERM trap my_handler 15 ``` +### disown + +Bash: + +```Bash + +disown % +``` + +POSIX: + +```sh +nohup +``` + +Note that while `nohup` can be used to achieve the same result, their semantics is different. +Also note that `nohup` will, by default, redirect input and output. + ## Exception Depends on what your expected POSIX shell providers would use.