diff options
Diffstat (limited to 'v2/src/bin/category')
-rwxr-xr-x | v2/src/bin/category | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/v2/src/bin/category b/v2/src/bin/category index 16eea0e..e3092cc 100755 --- a/v2/src/bin/category +++ b/v2/src/bin/category @@ -4,8 +4,8 @@ set -eu usage() { cat <<-'EOF' Usage: - category FILENAME - html -h + category FILENAME.md > FILENAME.categoryentry + category -h EOF } @@ -14,9 +14,9 @@ help() { Options: - -h, --help show this message + -h, --help show this message - FILENAME the name of the input file .md file + FILENAME.md the name of the input file .md file Process the FILENAME, and generate a the derived category files. @@ -64,7 +64,7 @@ shift $((OPTIND - 1)) . src/lib.sh FILENAME="${1:-}" -eval "$(assert_arg "$FILENAME" 'FILENAME')" +eval "$(assert_arg "$FILENAME" 'FILENAME.md')" # shellcheck source=/dev/null |