Search code examples
linuxls

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.


Solution

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