Merge pull request #96 from rasa/patch-3

Separate code from example
This commit is contained in:
dylan 2020-02-18 19:52:08 +02:00 committed by GitHub
commit 55821cb42b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
```