我想检查一下是否在系统上安装了nodejs.我收到此错误:
Error : command not found.
我该如何解决?
#!/bin/bash
if [ nodejs -v ]; then
echo "nodejs found"
else
echo "nodejs not found"
fi
最佳答案
你可以使用
原文链接:https://www.f2er.com/linux/440333.htmlcommand
bash builtin:
if command -v nodejs >/dev/null 2>&1 ; then
echo "nodejs found"
echo "version: $(nodejs -v)"
else
echo "nodejs not found"
fi