diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2004-01-27 09:22:20 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2004-01-27 09:22:20 +0000 |
commit | 82364bb59100c690a5cdee308da990577b91fe5a (patch) | |
tree | acfa8a340753648fd0a1d3b40c26bc074b8186c1 /include/usage.h | |
parent | 43112b4b65d60803a1511538a24930574be2f994 (diff) | |
download | busybox-w32-82364bb59100c690a5cdee308da990577b91fe5a.tar.gz busybox-w32-82364bb59100c690a5cdee308da990577b91fe5a.tar.bz2 busybox-w32-82364bb59100c690a5cdee308da990577b91fe5a.zip |
New applet, seq. No options, just the basics.
Diffstat (limited to 'include/usage.h')
-rw-r--r-- | include/usage.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/usage.h b/include/usage.h index f4897e4c0..bc6655e38 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -2094,6 +2094,16 @@ | |||
2094 | "$ echo "foo" | sed -e 's/f[a-zA-Z]o/bar/g'\n" \ | 2094 | "$ echo "foo" | sed -e 's/f[a-zA-Z]o/bar/g'\n" \ |
2095 | "bar\n" | 2095 | "bar\n" |
2096 | 2096 | ||
2097 | #define seq_trivial_usage \ | ||
2098 | "[first [increment]] last" | ||
2099 | #define seq_full_usage \ | ||
2100 | "Print numbers from FIRST to LAST, in steps of INCREMENT.\n" \ | ||
2101 | "FIRST, INCREMENT default to 1\n" \ | ||
2102 | "Arguments:\n" \ | ||
2103 | "\tLAST\n" \ | ||
2104 | "\tFIRST\tLAST\n" \ | ||
2105 | "\tFIRST\tINCREMENT\tLAST\n" | ||
2106 | |||
2097 | #define setkeycodes_trivial_usage \ | 2107 | #define setkeycodes_trivial_usage \ |
2098 | "SCANCODE KEYCODE ..." | 2108 | "SCANCODE KEYCODE ..." |
2099 | #define setkeycodes_full_usage \ | 2109 | #define setkeycodes_full_usage \ |