Can someone please tell me why line 7 (the if statement) generates an error:
test.sh: line 7: [: command_exists: unary operator expected
thank!
#!/usr/bin/env bash
command_exists () {
command -v "$1" &> /dev/null ;
}
if [ ! command_exists ruby ]; then
echo 'found ruby'
else
echo 'ruby not found'
fi
source
share