I am trying to find the top 5 most recent directories that have been modified with certain permissions.
My find command is like this
find -d -perm -a+rwx
I’m trying to combine it with
ls -lt
to take the results of find and put them in a long list with the most recently modified file on top.
Nothing I tried worked; I ended up getting something saying total=0.
-type d
instead of-d
? – jesse_b Apr 21 '18 at 21:37