bash – 检测可执行文件是否在用户的PATH上

前端之家收集整理的这篇文章主要介绍了bash – 检测可执行文件是否在用户的PATH上前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在bash脚本中,我需要确定一个名为foo的可执行文件是否在PATH上。
更好的是,你可以使用哪个:
path_to_executable=$(which name_of_executable)
 if [ -x "$path_to_executable" ] ; then
    echo "It's here: $path_to_executable"
 fi
原文链接:https://www.f2er.com/bash/388363.html

猜你在找的Bash相关文章