cerkiewny
cerkiewny

Reputation: 2851

Listing files with ls -R no subdir info

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

Answers (1)

tbsalling
tbsalling

Reputation: 4545

find . -name '*' -exec ls -la {} \; | sed '/^total/d'

Upvotes: 1

Related Questions