linux查找目录下的文件
时间: 2024-01-01 12:03:41 浏览: 68
在 Linux 中可以使用 "find" 命令来查找目录下的文件。例如,要在 "~/Documents" 目录中查找后缀为 ".txt" 的文件,可以使用以下命令:
```
find ~/Documents -name "*.txt"
```
如果需要在目录以及子目录中查找文件,可以使用 "-r" 或 "-d" 选项,如:
```
find ~/Documents -name "*.txt" -r
```
或
```
find ~/Documents -name "*.txt" -d
```
可以根据需要选择使用。
阅读全文