微信登录

功能 - whichis、find、where - 找文件

  1. whereis xxx 应用程序安装目录(详细)
  2. which xxx 应用程序安装目录(简单)
  3. 通过文件名查找
  4. find / -name xxx.ini
  5. 查找某个文件夹下包含abc的文件
  6. find /test -name '*abc*'
  7. 查找某个文件夹下以abc开头的文件
  8. find /test -name 'abc*'

应用程序安装目录(详细)

  1. whereis xxx

whereis

应用程序安装目录(简单)

  1. which xxx

which

通过文件名查找

  1. find / -name ssh

find / -name ssh

功能 - whichis、find、where - 找文件