linux – 如何检查bash脚本中的依赖项

前端之家收集整理的这篇文章主要介绍了linux – 如何检查bash脚本中的依赖项前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想检查一下是否在系统上安装了nodejs.我收到此错误

Error : command not found.

我该如何解决

#!/bin/bash

if [ nodejs -v ]; then
echo "nodejs found"
else
echo "nodejs not found"
fi
最佳答案
你可以使用command bash builtin

if command -v nodejs >/dev/null 2>&1 ; then
    echo "nodejs found"
    echo "version: $(nodejs -v)"
else
    echo "nodejs not found"
fi
原文链接:https://www.f2er.com/linux/440333.html

猜你在找的Linux相关文章