Linux 下的查找命令有好几个,我比较常用的就 whereis 和 find,这里和大家分享一下。
whereis
其中 whereis 主要用来查找命令文件、源代码和 man 帮助文件,使用也很简单,比如
//查找帮助文件
[wyg@server]# whereis -m php php: /usr/share/man/man1/php.1
//查找二进制文件,除了帮助文件外全列出来了
[wyg@server]# whereis -b php php: /usr/bin/php /etc/php.d /etc/php.ini /usr/include/php
//查找源代码,啥都找不到~~
[wyg@server]# whereis -s php
php:
就这些就够多了,够用了。
find
find 命令功能比他更强,主要是他定制性强,可以配合其他命令执行就无敌了,在服务器管理方面主要还是来针对特定的日志文件操...[ 查看全文 ]