CentOS搜索系统文件

 

Here’s the table of contents:

  1. 搜索系统文件并存储到指定位置
  2. 在当前目录下搜索文件

搜索系统文件并存储到指定位置

sudo find / -name "*vim*" > ~/find_vim_result

在当前目录下搜索文件

sudo find / -name "*csv*"