标签: linux ls
我想列出递归文件,但没有目录信息,所以格式与普通ls -la完全相同。
答案 0 :(得分:1)
find . -name '*' -exec ls -la {} \; | sed '/^total/d'