Domanda

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

È stato utile?

Soluzione

find . -name '*' -exec ls -la {} \; | sed '/^total/d'
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top