locate gtags会找到所有名为gtags的文件。
locate gtags
gtags
如果我只需要可执行文件,有什么办法吗?
发布于 2015-03-30 16:56:13
简单回答,使用GNU查找:
find / -type f -executable -name '*gtags*'
https://unix.stackexchange.com/questions/193422
相似问题