Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想列出一个目录及其子目录中的所有 .xml 文件。我尝试了 ls -LR 但无法过滤除 .xml 之外的其他文件 ..
我想要类似 ls -LR | grep *.xml 。
谢谢!
您可以使用find命令:
find
find . -type f -name '*.xml'
既然你用 bash 标记了这个问题:
shopt -s extglob globstar ls !(exclude.this.dir)/**/*.xml