From a2ccd314a01dfd0f57f3b43baa876a689fa899ba Mon Sep 17 00:00:00 2001 From: Alexander Regueiro Date: Sat, 19 Sep 2020 18:58:38 +0100 Subject: [PATCH] Updated help message. --- pdfmarks | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pdfmarks b/pdfmarks index bfac74c..5399138 100755 --- a/pdfmarks +++ b/pdfmarks @@ -9,12 +9,13 @@ show_help() { printf " -s=SEP\tseparate arguments of COMMAND using the characters of SEP instead of space\n" printf "\n" printf "Renumbers the pages of FILE according to COMMAND, where COMMAND is of the format:\n" - printf " [ [] [] ]*\n" + printf " [ [] [] [] ]*\n" printf "where\n" printf " is a physical page number;\n" printf " is a logical page number;\n" - printf " [optional] is one of 'D' (decimal Arabic), 'R' (upper-case Roman), 'r' (lower-case Roman), 'A' (upper-case letters), 'a' (lower-case letters), or '-' for unspecified;\n" - printf " [optional] is a label for prefixing page numbers.\n" + printf " [] is one of 'D' (decimal Arabic), 'R' (upper-case Roman), 'r' (lower-case Roman), 'A' (upper-case letters), 'a' (lower-case letters), or '-' for unspecified;\n" + printf " [] is a label for prefixing page numbers.\n" + printf " [] steps logical page numbers by from physical page until (instead of by one).\n" printf "Arguments in COMMAND may alternatively be delimited by the '#' charater, rather than by spaces (the ' ' character).\n" printf "If the COMMAND argument is not specified, then it is read as a single line from standard input.\n" }