From 3385e48654b85b09a1791774b6f48465245510dd Mon Sep 17 00:00:00 2001 From: Intel A80486DX2-66 Date: Sun, 21 Apr 2024 19:45:24 +0300 Subject: [PATCH] readme.md: update `example` to `example.out`; reformat --- readme.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/readme.md b/readme.md index 4537d9d..b843814 100644 --- a/readme.md +++ b/readme.md @@ -13,18 +13,17 @@ header only argument parsing for c inspired by the simplicity of [argh](https:// ```bash >> make ->> ./example -lph5 asdf 123 +>> ./example.out -lph5 asdf 123 head: 5, prefix: 1, lz4: 1 pos arg 0: asdf pos arg 1: 123 ->> ./example --lz4 asdf -p 123 --head 5 +>> ./example.out --lz4 asdf -p 123 --head 5 head: 5, prefix: 1, lz4: 1 pos arg 0: asdf pos arg 1: 123 - ->> ./example asdf 123 --head 5 --lz4 +>> ./example.out asdf 123 --head 5 --lz4 head: 5, prefix: 0, lz4: 1 pos arg 0: asdf pos arg 1: 123