5 lines
79 B
Bash
Executable File
5 lines
79 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
|
|
[ -n "$1" ] && command -v "$1" || exit 1
|