diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-11-12 12:59:56 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-11-12 12:59:56 +0000 |
commit | 2598f761bb526afd8ec0de06071fcd6f1a897cd5 (patch) | |
tree | 563c08c1abfbab669dcacf51e76a6e5221fb192d /include | |
parent | 1ad4db1d8e47b8835f19ad8fe44475db51cf01f9 (diff) | |
download | busybox-w32-2598f761bb526afd8ec0de06071fcd6f1a897cd5.tar.gz busybox-w32-2598f761bb526afd8ec0de06071fcd6f1a897cd5.tar.bz2 busybox-w32-2598f761bb526afd8ec0de06071fcd6f1a897cd5.zip |
- add seq -w support (Natanael Copa)
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/usage.h b/include/usage.h index 71f221828..4360edba6 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -3594,11 +3594,12 @@ | |||
3594 | "\nOther options are silently ignored; -oi is implied" \ | 3594 | "\nOther options are silently ignored; -oi is implied" \ |
3595 | 3595 | ||
3596 | #define seq_trivial_usage \ | 3596 | #define seq_trivial_usage \ |
3597 | "[first [increment]] last" | 3597 | "[-w] [first [increment]] last" |
3598 | #define seq_full_usage "\n\n" \ | 3598 | #define seq_full_usage "\n\n" \ |
3599 | "Print numbers from FIRST to LAST, in steps of INCREMENT.\n" \ | 3599 | "Print numbers from FIRST to LAST, in steps of INCREMENT.\n" \ |
3600 | "FIRST, INCREMENT default to 1\n" \ | 3600 | "FIRST, INCREMENT default to 1\n" \ |
3601 | "\nArguments:" \ | 3601 | "\nArguments:" \ |
3602 | "\n -w Pad to last with leading zeros" \ | ||
3602 | "\n LAST" \ | 3603 | "\n LAST" \ |
3603 | "\n FIRST LAST" \ | 3604 | "\n FIRST LAST" \ |
3604 | "\n FIRST INCREMENT LAST" \ | 3605 | "\n FIRST INCREMENT LAST" \ |