Separate code from example

This commit is contained in:
Ross Smith II 2020-02-18 08:53:00 -08:00 committed by SkyperTHC
parent a56ca0c84c
commit 2492b4673c
No known key found for this signature in database
GPG Key ID: A9BD386DF9113CD6
1 changed files with 2 additions and 0 deletions

View File

@ -219,7 +219,9 @@ This will run the given command and keep it running, even after the terminal or
bkr() {
(nohup "$@" &>/dev/null &)
}
```
```shell
bkr ./some_script.sh # some_script.sh is now running in the background
```