a little front end script to tame it: ``` #!/usr/bin/env bash ORIGARGS=("$@") # all arguments and flags; first one should be a command name # declare -a ARGS # collect the non-flag arguments # while [[ $# -gt 0 ]]; do # if [[ "$1" = -* ]]; then # shift # else # ARGS+=("$1") # shift # fi # done LCLI=linode-cli if [[ ! ( " $* " =~ " --pretty " || " $* " =~ " -p " ) ]]; then LOPTS=--text fi function usage() { clear cat </dev/null; then "${ORIGARGS[@]}"; else usage; fi ```