mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-07 21:15:19 +03:00
24 lines
533 B
Bash
Executable File
24 lines
533 B
Bash
Executable File
#!/bin/bash
|
|
# Output subcommands from man/usage text
|
|
|
|
set -o errexit -o pipefail -o nounset
|
|
|
|
main() {
|
|
declare tmp
|
|
tmp=$(mktemp)
|
|
cat > "$tmp"
|
|
|
|
# Do not output mistaken commands that start with a dash (e.g. -h)
|
|
sed -rn 's/^ ([-a-z]+).*/\1/gp' "$tmp" \
|
|
| grep -v ^-
|
|
|
|
# Output single command aliases in parenthesis:
|
|
# Do not output single letter command aliases, it's not useful.
|
|
sed -rn 's/^ .*\(([a-z]+)\).*/\1/gp' "$tmp" \
|
|
| grep -v ^.$
|
|
|
|
# TODO missing: (reg, r) (multiple aliases)
|
|
}
|
|
|
|
main "$@"
|