diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-05-20 12:20:48 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-05-20 12:20:48 +0200 |
commit | e18255d1dadc9686daa328fa121423b47d2f6af4 (patch) | |
tree | abea08a2f62c5fa9322086d5b0151b602636da2b /include/usage.h | |
parent | e424423a7b164e0c343c180a944844fd27ccbe97 (diff) | |
parent | 38478a600f52eb8f00d260a2f99d8430b9aba1e8 (diff) |
Merge branch 'master' of git+ssh://vda@busybox.net/var/lib/git/busybox
Diffstat (limited to 'include/usage.h')
-rw-r--r-- | include/usage.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/usage.h b/include/usage.h index 123462a02..1e327fb97 100644 --- a/include/usage.h +++ b/include/usage.h @@ -3512,6 +3512,11 @@ "\n -g Process group id(s)" \ "\n -u Process user name(s) and/or id(s)" \ +#define scriptreplay_trivial_usage \ + "timingfile [typescript [divisor]]" +#define scriptreplay_full_usage "\n\n" \ + "Play back typescripts, using timing information" + #define reset_trivial_usage \ "" #define reset_full_usage "\n\n" \ @@ -3706,13 +3711,16 @@ "$ rx /tmp/foo\n" #define script_trivial_usage \ - "[-afq] [-c COMMAND] [OUTFILE]" + "[-afq" IF_SCRIPTREPLAY("t") "] [-c COMMAND] [OUTFILE]" #define script_full_usage "\n\n" \ "Options:" \ "\n -a Append output" \ "\n -c Run COMMAND, not shell" \ "\n -f Flush output after each write" \ "\n -q Quiet" \ + IF_SCRIPTREPLAY( \ + "\n -t Send timing to stderr" \ + ) #define sed_trivial_usage \ "[-efinr] pattern [files...]" |