如何基于通配符匹配递归地找到当前文件夹和子文件夹中的所有文件?
Use find for that:
(为此使用查找 :)
find . -name "foo*"
find needs a starting point, and the .
find
.
(find需要一个起点,然后.)
((点)指向当前目录。)
2.1m questions
2.1m answers
60 comments
57.0k users