Question

I want to list recursively files but without the directory information, so to be the exactly the same format as normal ls -la.

Was it helpful?

Solution

find . -name '*' -exec ls -la {} \; | sed '/^total/d'
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top