diff options
author | Case Duckworth | 2022-07-06 22:11:20 -0500 |
---|---|---|
committer | Case Duckworth | 2022-07-06 22:11:20 -0500 |
commit | 5a2b465ca0252e9012263133028177bdee444120 (patch) | |
tree | 78873c6871cb22f1fc1ec9fb0fbbd5eb632ba86c | |
parent | Fix -h (diff) | |
download | trainfuck-5a2b465ca0252e9012263133028177bdee444120.tar.gz trainfuck-5a2b465ca0252e9012263133028177bdee444120.zip |
Fix --
-rwxr-xr-x | trainfuck.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trainfuck.awk b/trainfuck.awk index 6a527e8..84397ff 100755 --- a/trainfuck.awk +++ b/trainfuck.awk | |||
@@ -343,10 +343,10 @@ function usage() | |||
343 | eprint("\t\tbe assumed to be the default filetype (" BF_MODE ").") | 343 | eprint("\t\tbe assumed to be the default filetype (" BF_MODE ").") |
344 | eprint(" -w WIDTH\tSet the brainfuck output width (default: " BF_WIDTH ").") | 344 | eprint(" -w WIDTH\tSet the brainfuck output width (default: " BF_WIDTH ").") |
345 | eprint(" -o OUTPUTFILE\tWhere to send transpiled brainfuck (default: " BF_OUTPUT ").") | 345 | eprint(" -o OUTPUTFILE\tWhere to send transpiled brainfuck (default: " BF_OUTPUT ").") |
346 | eprint(" --\t\tStop processing arguments; interpret the rest as filenames") | ||
346 | eprint() | 347 | eprint() |
347 | eprint("FLAGS:") | 348 | eprint("FLAGS:") |
348 | eprint(" -h, --help\t\tShow this help") | 349 | eprint(" -h, --help\t\tShow this help") |
349 | eprint(" --\t\tStop processing arguments; interpret the rest as filenames") | ||
350 | eprint(" -c, --comments\t\tShow comments" (BF_PRINT_COMMENTS ? " (default)" : "")) | 350 | eprint(" -c, --comments\t\tShow comments" (BF_PRINT_COMMENTS ? " (default)" : "")) |
351 | eprint(" -C, --no-comments\tHide comments" (BF_PRINT_COMMENTS ? "" : " (default)")) | 351 | eprint(" -C, --no-comments\tHide comments" (BF_PRINT_COMMENTS ? "" : " (default)")) |
352 | eprint(" -z, --compact\t\tShow \"compact\" comments" (BF_COMMENTS_COMPACT ? " (default)" : "")) | 352 | eprint(" -z, --compact\t\tShow \"compact\" comments" (BF_COMMENTS_COMPACT ? " (default)" : "")) |