diff options
Diffstat (limited to 'coreutils/nohup.c')
-rw-r--r-- | coreutils/nohup.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/coreutils/nohup.c b/coreutils/nohup.c index c21aae9f5..63853fd55 100644 --- a/coreutils/nohup.c +++ b/coreutils/nohup.c | |||
@@ -10,6 +10,14 @@ | |||
10 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 10 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
11 | */ | 11 | */ |
12 | 12 | ||
13 | //usage:#define nohup_trivial_usage | ||
14 | //usage: "PROG ARGS" | ||
15 | //usage:#define nohup_full_usage "\n\n" | ||
16 | //usage: "Run PROG immune to hangups, with output to a non-tty" | ||
17 | //usage: | ||
18 | //usage:#define nohup_example_usage | ||
19 | //usage: "$ nohup make &" | ||
20 | |||
13 | #include "libbb.h" | 21 | #include "libbb.h" |
14 | 22 | ||
15 | /* Compat info: nohup (GNU coreutils 6.8) does this: | 23 | /* Compat info: nohup (GNU coreutils 6.8) does this: |