7 行目 (if ステートメント) でエラーが発生する理由を教えてください。
test.sh: line 7: [: command_exists: unary operator expected
ありがとう!
#!/usr/bin/env bash
command_exists () {
command -v "$1" &> /dev/null ;
}
if [ ! command_exists ruby ]; then # test.sh: line 7: [: command_exists: unary operator expected
echo 'found ruby'
else
echo 'ruby not found'
fi