Re: ls lacking a feature?



Bernard Liang wrote:

Well,

ls -l | grep ^d | tr -s ' ' | cut -d' ' -f9

find * -type d -prune | xargs ls -d

or

ls -d `find * -type d -prune`

(And please don't try to tell us the mighty ls lacks a feature again! ;-)

--
Phlip
.