查找文件

因为我们已经浏览了 Linux 系统,所以一件事已经变得非常清楚:一个典型的 Linux 系统

包含很多文件!这就引发了一个问题,“我们怎样查找东西?”。虽然我们已经知道 Linux 文件

系统良好的组织结构,是源自类 Unix 的操作系统代代传承的习俗。但是仅文件数量就会引起

可怕的问题。

locate – Find files by name

• locate –通过名字来查找文件

• find – Search for files in a directory hierarchy

• find –在目录层次结构中搜索文件

We will also look at a command that is often used with file search commands to process the

resulting list of files:

我们也将看一个经常与文件搜索命令一起使用的命令,它用来处理搜索到的文件列表:

• xargs – Build and execute command lines from standard input

• xargs –从标准输入生成和执行命令行

另外,我们将介绍两个命令来协助我们探索:

342• touch – Change file times

• touch –更改文件时间

• stat – Display file or file system status

• stat –显示文件或文件系统状态

你可能感兴趣的:(查找文件)