mirror of
https://github.com/jimeh/tmuxifier.git
synced 2026-02-19 01:46:40 +00:00
12 lines
191 B
Bash
12 lines
191 B
Bash
calling-help() {
|
|
if [[ " $@ " != *" --help "* ]] && [[ " $@ " != *" -h "* ]]; then
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
calling-complete() {
|
|
if [[ " $@ " != *" --complete "* ]]; then
|
|
return 1
|
|
fi
|
|
}
|