如何对子文件夹中的文件使用 stat 命令?

How to use the stat command for files that are in subfolders?

我有以下代码:

for file in *; do stat "$file"; done | tee output.txt

而且效果很好(如果您不想从子文件夹中的文件获取信息)

但根据我的需要...我想知道是否有办法修改此代码,以便它也为我提供子文件夹中文件的信息。

对于能够以任何方式做出贡献的人:非常感谢。

而不是 shell 通配符使用 find:

find . -type f -exec stat {} \; | tee output.txt