且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何基于通配符匹配递归地找到当前文件夹和子文件夹中的所有文件?

更新时间:2022-11-13 12:29:37

使用查找为此:

find . -name "foo*"

find需要一个起点,而.(点)指向当前目录.

find needs a starting point, and the . (dot) points to the current directory.