#!/bin/bash # shellcheck disable=SC2016 set -e # export PATH="/bin:/usr/bin:/usr/local/bin" # safer, if you can (( BASH_VERSINFO[0] < 4 )) && echo "Bash 4+ required." && exit 1 : "${PAGER:=more}" : "${EDITOR:=vi}" : "${HELP_BROWSER:=}" : "${EXE:="${0##*/}"}" declare -A HELP declare -A CONFIG HELP[main]=' # Bash Template Command *This `README.md` is autogenerated.* This is a GitHub template repo that will be copied instead of forked to create a new Bash command with a command something like this: ``` gh repo create rwxrob/mycmd -p rwxrob/template-bash-command ``` This `cmd` inside can then be renamed and finished. Obviously, not all of this is needed for many Bash scripts, but anything with more than two subcommands will benefit from the builtin tab completion, embedded Markdown help documentation support, and included functions (`usage`, `_filter`, `_buffer`, `_have`, etc.) ## Naming Conventions * Name repos containing single bash commands with `cmd-` * Name template repos beginning with `template-` * Start command functions with `command_` to be completed * Start command functions with `command__` to not be completed ## Dependencies Required: * Bash 4+ Optional: * `pandoc` - for rich help docs * `jq` - for `json` and anything that uses it ## Justification Bash is the dominate shell scripting language and the official default Linux interactive shell, which reduces cognitive overhead; every command line *is* a line of code that could be put into script as is. Bash scripts are at the core of cloud, containers, and Kubernetes. Bash 4+ with its associative array support, powerful regular expressions, and multiple ways of feeding data to loops easily covers the needs previously requiring Python and Perl scripts. Bash scripts are also much more powerful, safer, flexible, and performant than POSIX shell or Zsh. ## Guidelines * Write GitHub Flavored Markdown only * Use present tense ("outputs" over "will output") * Prefer term "output" and "display" over ~~print~~ * Follow the [naming conventions](#naming-conventions) * Use the official bash path: `#!/bin/bash` * Use of `#!/usr/bin/bash` is outdated * Using `#!/usr/bin/env bash` introduces unnecessary risk * Explicitly export `PATH` in script when possible * Always check script with [`shellcheck`] before releasing * Always use `bc` for *any* floating point math [`shellcheck`]: ## Legal Copyright 2021 Rob Muhlestein Released under Apache-2.0 License Please mention rwxrob.tv' HELP[foo]='Foos things.' command_foo() { _filter "$@" && return $? echo "would foo: $*" } HELP[bar]=' ``` '"$EXE"' bar ``` Bar the things.' command_bar() { _buffer "$@" && return $? echo "would bar: $*" } HELP[json]=' ## Convert to JSON String ``` '"$EXE"' json STRING '"$EXE"' json <<< STRING '"$EXE"' json < FILE '"$EXE"' json < <(COMMAND) ``` Converts input into JSON string using `jq` (if found) containing only escaped (`\\n`) line returns.' command_json() { _jsonstr "$@"; } command__hidden() { _filter "$@" && return $? echo "would run _hidden: $*" } # ------------------ builtin commands and functions ------------------ # (https://github.com/rwxrob/template-bash-command) HELP[usage]='Displays a summary of usage.' command_usage() { local -a cmds for c in "${COMMANDS[@]}"; do [[ ${c:0:1} =~ _ ]] && continue cmds+=("$c") done local IFS='|' printf "usage: %s (%s)\n" "$EXE" "${cmds[*]}" } HELP[help]=' ``` '"$EXE"' help [COMMAND] ``` Displays specific help information. If no argument is passed displays general help information (main). Otherwise, the documentation for the specific argument keyword is displayed, which usually corresponds to a COMMAND name (but not necessarily). All documentation is written in GitHub Flavored Markdown and will displayed as a web page if `pandoc` and `$HELP_BROWSER` are detected, otherwise, just the Markdown is sent to `$PAGER` (default: more). Also see `readme` and `usage` commands. ' command_help() { local name="${1:-main}" title body title=$(_help_title "$name") || true if [[ -z "$title" ]]; then body="${HELP[$name]}" title="$EXE $name" [[ $name = main ]] && title="$EXE" else body="${HELP[$name]}" body=${body#*$title} fi local file="/tmp/help-$EXE-$name.html" if _have pandoc ; then if _have "$HELP_BROWSER" && [[ -t 1 ]] ;then pandoc -f gfm -s --metadata title="$title" \ -o "$file" <<< "$body" [[ -z "$2" ]] && cd /tmp && exec "$HELP_BROWSER" "$file" return 0 fi pandoc -f gfm -s --metadata title="$title" \ -t plain <<< "$body" | "$PAGER" return 0 fi echo -e "$title\n\n$body" | "$PAGER" } HELP[readme]=' ## Generate `README.md` File ``` '"$EXE"' readme > README.md ``` The `readme` command will output the embedded help documentation in raw GitHub Flavored Markdown suitable for use as a `README.md` file on GitHub or similar hosting service.' command_readme() { _trim "${HELP[main]}" echo while IFS= read -r name; do [[ $name = main ]] && continue body=$(_trim "${HELP[$name]}") [[ $body =~ ^\# ]] || body="## The \`$name\` Command"$'\n\n'$body printf "%s\n\n" "$body" done < <(printf "%s\n" "${!HELP[@]}" | LC_COLLATE=C sort) echo -e "----\n\n*Autogenerated $(date)*\n" } HELP[config]=' ``` '"$EXE"' config '"$EXE"' config KEY '"$EXE"' config KEY VALUE '"$EXE"' config KEY "" ``` The `config` command is for reading, writing, and displaying standard open desktop configuration properties. Pass an empty string to delete a property. ### Arguments With no arguments outputs all the currently cached configuration settings. With a single KEY argument fetches the value for that key and outputs it. The special `dir` KEY is reserved and always outputs the full path to the current configuration directory containing the `values` file. The special `path` KEY is reserved and always outputs the full path to the `values` file itself. With more than one argument the remaining arguments after the KEY will be combined into the VALUE and written to a `values` file in the configuration directory. ### Configuration Directory The configuration directory path relies on the following environment variables: * `EXE` - defaults to name of currently running command ('"$EXE"') * `HOME` - checked for `$HOME/.config/$EXE/values` * `XDG_CONFIG_HOME` - overrides `$HOME/.config` * `CONFIG_DIR` - full path to directory containing `values` file The `CONFIG_DIR` always takes priority over anything else if set, but is never implied. If the directory does not exist it will be created the first time a value is set. ### Configuration `values` File Format The file (which is almost always located at `~/.config/'"$EXE"'/values`) uses the simplest possible format to facilitate standard UNIX parsing and filtering with any number of existing tools (and no `jq` dependency). * One KEY=VALUE per line * KEYs may be anything but the equal sign (`=`) * VALUEs may be anything but line returns must be escaped Note that this is *not* the same as Java properties and other similar format. It is designed for ultimate simplicity, efficiency, and portability.' command_config() { case $# in 0) _dump_config ;; 1) _get_config "$@" ;; *) _set_config "$@" ;; esac } _help_title() { _filter "$@" && return $?; local name="$1" while IFS= read -r line; do [[ $line =~ ^[:space]*$ ]] && continue [[ $line =~ ^#\ (.+) ]] && echo "${BASH_REMATCH[1]}" && return 0 return 1 done <<< "${HELP[$name]}" } _config_path() { local dir="$HOME/.config/$EXE" [[ -n "$XDG_CONFIG_HOME" ]] && dir="$XDG_CONFIG_HOME/$EXE" [[ -n "$CONFIG_DIR" ]] && dir="$CONFIG_DIR" [[ -n "$1" ]] && echo "$dir/$1" && return 0 echo "$dir" } _set_config() { local key="$1"; shift; local val="$*" val="${val//$'\n'/\\n}" CONFIG["$key"]="$val" _write_config } _get_config() { local key="$1" case $key in dir) _config_path "" ;; path) _config_path values ;; *) printf "${CONFIG[$key]}" ;; esac } _read_config() { local values="$(_get_config path)" [[ -r "$values" ]] || return 0 while IFS= read -r line; do [[ $line =~ ^([^=]+)=(.+)$ ]] || continue CONFIG["${BASH_REMATCH[1]}"]="${BASH_REMATCH[2]}" done < "$values" } _write_config() { local dir="$(_get_config dir)" mkdir -p "$dir" _dump_config > "$dir/values" } _dump_config() { (( ${#CONFIG[@]} == 0 )) && return 0 paste -d=\ <(printf "%s\n" "${!CONFIG[@]}") \ <(printf "%s\n" "${CONFIG[@]}") } _trim() { local it="${1#"${1%%[![:space:]]*}"}" echo -e "${it%"${it##*[![:space:]]}"}" } _jsonstr() { _buffer "$@" && return $? jq -MRsc <<< "$1" } _have(){ type "$1" &>/dev/null; } _filter(){ [[ -n "$1" ]] && return 1 while IFS= read -ra args; do "${FUNCNAME[1]}" "${args[@]}" done } _buffer() { [[ -n "$1" ]] && return 1 "${FUNCNAME[1]}" "$(