From a924f2a5238bc0a124739c48d9d6408862de7164 Mon Sep 17 00:00:00 2001 From: jaseg Date: Fri, 25 Dec 2020 15:38:21 +0100 Subject: Update help string for long options --- lolcat.c | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/lolcat.c b/lolcat.c index 9d872ed..0fcd912 100755 --- a/lolcat.c +++ b/lolcat.c @@ -35,15 +35,16 @@ static char helpstr[] = "\n" "Concatenate FILE(s), or standard input, to standard output.\n" "With no FILE, or when FILE is -, read standard input.\n" "\n" - " -h : Horizontal rainbow frequency (default: 0.23)\n" - " -v : Vertical rainbow frequency (default: 0.1)\n" - " -f: Force color even when stdout is not a tty\n" - " -l: Use encoding from system locale instead of assuming UTF-8\n" - " -r: Random colors\n" - " -b: Output in 24-bit \"true\" RGB mode (slower and not" - " supported by all terminals)\n" - " --version: Print version and exit\n" - " --help: Show this message\n" + "--horizontal-frequency , -h : Horizontal rainbow frequency (default: 0.23)\n" + " --vertical-frequency , -v : Vertical rainbow frequency (default: 0.1)\n" + " --force-color, -f: Force color even when stdout is not a tty\n" + " --no-force-locale, -l: Use encoding from system locale instead of\n" + " assuming UTF-8\n" + " --random, -r: Random colors\n" + " --24bit, -b: Output in 24-bit \"true\" RGB mode (slower and\n" + " not supported by all terminals)\n" + " --version: Print version and exit\n" + " --help: Show this message\n" "\n" "Examples:\n" " lolcat f - g Output f's contents, then stdin, then g's contents.\n" -- cgit