有人可以告诉我为什么第 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