echo Blah: `stat -c %a .`
是否有可能找到-exec来为找到的每个文件执行相同的操作,而{}代替.
find . -exec bash -c 'echo Blah: $(stat -c %a "$@")' _ {} \;
下划线是0美元的占位符.