diff options
author | Taylor C. Richberger <Taywee@gmx.com> | 2016-05-14 15:51:24 -0600 |
---|---|---|
committer | Taylor C. Richberger <Taywee@gmx.com> | 2016-05-14 15:51:24 -0600 |
commit | 2233e2046bcf3ca9ced91eed9c5f9f34d3d3a800 (patch) | |
tree | 2dcc8aa6518a3294719ede9918138f6743587300 /README.md | |
parent | shrink into shorthand branches (diff) | |
download | args.hxx-2233e2046bcf3ca9ced91eed9c5f9f34d3d3a800.tar.xz |
fix a few readme things
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 28 |
1 files changed, 14 insertions, 14 deletions
@@ -738,17 +738,17 @@ int main(int argc, char **argv) ```shell % ./test help - ./test {OPTIONS} + ./test {OPTIONS} - This command likes to break your disks + This command likes to break your disks OPTIONS: - help Show this help menu. - bs BYTES Block size - skip BYTES Bytes to skip - if BLOCK_SIZE Block size - of BLOCK_SIZE Block size + help Show this help menu. + bs=[BYTES] Block size + skip=[BYTES] Bytes to skip + if=[BLOCK SIZE] Block size + of=[BLOCK SIZE] Block size % ./test bs=1024 skip=7 if=/tmp/input bs = 1024 @@ -767,17 +767,17 @@ parser.LongSeparator(":"); ```shell % ./test /help - ./test {OPTIONS} + ./test {OPTIONS} - This command likes to break your disks + This command likes to break your disks OPTIONS: - /help Show this help menu. - /bs BYTES Block size - /skip BYTES Bytes to skip - /if BLOCK_SIZE Block size - /of BLOCK_SIZE Block size + /help Show this help menu. + /bs:[BYTES] Block size + /skip:[BYTES] Bytes to skip + /if:[BLOCK SIZE] Block size + /of:[BLOCK SIZE] Block size % ./test /bs:72 /skip:87 /if:/tmp/test.txt bs = 72 |