diff options
author | Bernhard Reutner-Fischer | 2008-11-12 13:22:24 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2008-11-12 13:22:24 +0000 |
commit | c021cb08b58dee7480fe6035d8ac00f0dbe83188 (patch) | |
tree | 818cd62174f60f4a4647b6bbcea27a1ca1029031 /include | |
parent | 2598f761bb526afd8ec0de06071fcd6f1a897cd5 (diff) | |
download | busybox-c021cb08b58dee7480fe6035d8ac00f0dbe83188.zip busybox-c021cb08b58dee7480fe6035d8ac00f0dbe83188.tar.gz |
- add support for seq -s <separator>
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/usage.h b/include/usage.h index 4360edb..f9b6aca 100644 --- a/include/usage.h +++ b/include/usage.h @@ -3594,12 +3594,13 @@ "\nOther options are silently ignored; -oi is implied" \ #define seq_trivial_usage \ - "[-w] [first [increment]] last" + "[-w] [-s separator] [first [increment]] last" #define seq_full_usage "\n\n" \ "Print numbers from FIRST to LAST, in steps of INCREMENT.\n" \ "FIRST, INCREMENT default to 1\n" \ "\nArguments:" \ - "\n -w Pad to last with leading zeros" \ + "\n -w Pad to last with leading zeros" \ + "\n -s <string> Use string separator" \ "\n LAST" \ "\n FIRST LAST" \ "\n FIRST INCREMENT LAST" \ |