在bash脚本中,我需要确定一个名为foo的可执行文件是否在PATH上。
更好的是,你可以使用哪个:
原文链接:https://www.f2er.com/bash/388363.htmlpath_to_executable=$(which name_of_executable) if [ -x "$path_to_executable" ] ; then echo "It's here: $path_to_executable" fi