diff options
Diffstat (limited to 'coreutils/nice.c')
-rw-r--r-- | coreutils/nice.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/coreutils/nice.c b/coreutils/nice.c index 35d6bf3..2763986 100644 --- a/coreutils/nice.c +++ b/coreutils/nice.c @@ -7,6 +7,13 @@ * Licensed under GPLv2 or later, see file LICENSE in this source tree. */ +//usage:#define nice_trivial_usage +//usage: "[-n ADJUST] [PROG ARGS]" +//usage:#define nice_full_usage "\n\n" +//usage: "Change scheduling priority, run PROG\n" +//usage: "\nOptions:" +//usage: "\n -n ADJUST Adjust priority by ADJUST" + #include <sys/resource.h> #include "libbb.h" |