• 主页

  • 投资

  • IT

    🔥
  • 设计

  • 销售

关闭

返回栏目

关闭

返回服务器栏目

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

作者:

贺及楼

成为作者

更新日期:2024-10-11 12:12:45

  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