Reputation: 2851
I want to list recursively files but without the directory information, so to be the exactly the same format as normal ls -la.
Upvotes: 1
Views: 335
Reputation: 4545
find . -name '*' -exec ls -la {} \; | sed '/^total/d'