back to linux

find new PNG files created less than 1 day ago and copy them to another folder

find . -name "*.png" -ctime -1 -exec cp {} /path/to/other/folder \;

find and display files newer than a given “date time”

find . -newermt "2020-04-03 10:50:00" -type f -ls

back to top