Files
tmuxifier/lib/util.sh
Jim Myhrberg adb008b301 style(shell): improve shell script formatting and quoting
Apply shfmt formatting and fix some schellcheck complaints.
2025-12-01 23:04:40 +00:00

12 lines
191 B
Bash

calling-help() {
if [[ " $* " != *" --help "* ]] && [[ " $* " != *" -h "* ]]; then
return 1
fi
}
calling-complete() {
if [[ " $* " != *" --complete "* ]]; then
return 1
fi
}