User Tools

Site Tools


bash:main-bash

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

bash/main-bash.txt · Last modified: 2023/03/31 12:22 by 127.0.0.1