标签: bash path find
这里的新手总数。我想编写一个bash脚本,允许我在$ PATH中的所有目录上执行find或ls命令。我需要它来获取一个搜索字符串,并在$ PATH返回的所有目录上运行find或ls(我不知道哪个更好)。谢谢!
到目前为止我所拥有的:
arr=$(echo $PATH | tr ":" "\n") echo -n "SEARCH STRING:" read STRING for x in $arr do find /"$x" -iname "$STRING" done
答案 0 :(得分:0)
在此处查看我的解决方案:http://www.linuxquestions.org/questions/blog/konsolebox-210384/binfind-search-for-executable-files-based-from-path-variable-35012/