diff options
author | Ron Yorston <rmy@pobox.com> | 2012-03-22 14:11:12 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2012-03-22 14:11:12 +0000 |
commit | 67758035a4fe040c6ac69b39d61bcd6bddd7b827 (patch) | |
tree | a4a1db7f54c16d12fabe2626b8f1e235cd694e9e /coreutils/nohup.c | |
parent | 811c449748d5bd0505f8510e5582892f94ac0cda (diff) | |
parent | b83c9704128dd106071184e4b00335a3b8486857 (diff) | |
download | busybox-w32-67758035a4fe040c6ac69b39d61bcd6bddd7b827.tar.gz busybox-w32-67758035a4fe040c6ac69b39d61bcd6bddd7b827.tar.bz2 busybox-w32-67758035a4fe040c6ac69b39d61bcd6bddd7b827.zip |
Merge commit 'b83c9704128dd106071184e4b00335a3b8486857' into merge
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: |