From 36ccded371a5db62695fe159bf28ba2eb2da627f Mon Sep 17 00:00:00 2001 From: Ross Smith II Date: Tue, 18 Feb 2020 08:53:00 -0800 Subject: [PATCH] Separate code from example --- manuscript/chapter19.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manuscript/chapter19.txt b/manuscript/chapter19.txt index 62aefef..85ef650 100644 --- a/manuscript/chapter19.txt +++ b/manuscript/chapter19.txt @@ -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 ```