List of files with date and size!

the magic command:

find . -type f -print0 | xargs -0 stat -c “%y %s %n” > ALL_FILES_DATE.txt

and soon how can you parse this to insert it in a mysql. Or maybe change the syntax so the output is allready a mysql command!

One more, but it needs the nececary modifications:

find . -xdev -type f -size +100M -print | xargs ls -lh | sort -k5,5 -h -r | head

😉