Category: Linux

List Files Recursively

If you want to list files date in a folder structure recursively run the following command which will pipe it to a file called /files. Then you can edit the file and check out the output.

cd /
find . -type f -printf "%-.22T+ %M %n %-8u %-8g %8s %Tx %.8TX %pn" | sort | cut -f 2- -d ' ' > /files

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.