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