Gregg's MOTD

Tips & Tricks that I've Encountered Over the Years...

Move Files Older Than So Many Days with Find

July 26, 2023 — Gregg Szumowski

You may want to clean up a directory that has files older than a certain number of days, for example, 30 days. You can do this with the find command:

To move files older than 30 days in current folder to the old folder:

$ find . -mtime +30 -exec mv {} old/ \;

Tags: cli, find, mtime, mv, motd