Linux common commands-21: find
The find command can find files or directories based on a given path and expression. It has a lot of parameters, and supports regular expressions. Combining pipeline commands can achieve complex functions. Syntax format: find [parameter] [path] [find and search scope] Common parameters: Example # 在当前目录下查找文件test.py find . -name test.py # 在当前目录下查找文件test.py,忽略大小写find . -iname test.py […]
Linux common commands-21: find Read More »