
- by x32x01 ||
Over time, your Linux system can get cluttered with unused or outdated files
, especially in directories like Downloads or logs. Cleaning these up regularly saves disk space and keeps your system fast
. In this guide, you’ll learn how to find and delete files older than 30 days using simple terminal commands.
Removing old files:
Important: Make sure you don’t need those files before deleting! These commands won’t ask for confirmation.
First, let’s just list old files under
Once you confirm they’re not needed, delete them:
or
If you have specific log or temporary files (e.g., starting with “Trans_suc”), test first with:
Then, once confirmed, delete them safely:
or
Need to clean up .log files older than 10 days in /var/log?
First, preview:
Then remove them:
or
You can replace .log with .jpg, .zip, .txt, etc. to target specific file types.
Want to automate cleanup? Add your find command to a cron job to run it weekly or monthly.
Example:
That runs cleanup every Sunday at 3 AM 
Regularly deleting old files helps keep your system optimized and clutter-free. Whether you choose 10, 30, or 90 days, Linux’s find command gives you total control over file cleanup - fast and automatic
.


Why You Should Delete Old Files
Removing old files:- Frees up valuable storage space
- Keeps your directories organized
- Prevents performance slowdowns

Understanding the mtime Command
mtime
stands for Modification Time - it refers to the last time a file’s content was changed.-mtime +30
means “files modified more than 30 days ago.”- Each number equals 24 hours. So,
-mtime +2
= 2 days.
Example 1: Find & Delete Files Older Than 30 Days
First, let’s just list old files under /home/linuxgeek/Downloads
to review them safely: Code:
find /home/linuxgeek/Downloads -type f -mtime +30 -print
Once you confirm they’re not needed, delete them:
Code:
find /home/linuxgeek/Downloads -type f -mtime +30 -exec rm -f {} \;
Code:
find /home/linuxgeek/Downloads -type f -mtime +30 | xargs rm -f
Command Breakdown
find
: search command-type f
: only files-mtime +30
: files older than 30 days-exec rm -f
: execute delete command{}
: represents each found file\;
: ends the command
Example 2: Delete Files Older Than X Days by Name Pattern
If you have specific log or temporary files (e.g., starting with “Trans_suc”), test first with: Code:
find /home/linuxgeek/Downloads -type f -name "Trans_suc*" -mtime +30 -print
Then, once confirmed, delete them safely:
Code:
find /home/linuxgeek/Downloads -type f -name "Trans_suc*" -mtime +30 -exec rm -f {} \;
Code:
find /home/linuxgeek/Downloads -type f -name "Trans_suc*" -mtime +30 | xargs rm -f
Example 3: Delete Files Older Than 10 Days by Extension
Need to clean up .log files older than 10 days in /var/log?First, preview:
Code:
find /var/log -type f -name "*.log" -mtime +10 -print
Then remove them:
Code:
find /var/log -type f -name "*.log" -mtime +10 -exec rm -f {} \;
Code:
find /var/log -type f -name "*.log" -mtime +10 | xargs rm -f

Pro Tip
Want to automate cleanup? Add your find command to a cron job to run it weekly or monthly.Example:
Code:
0 3 * * 7 find /home/user/Downloads -type f -mtime +30 -exec rm -f {} \;

Final Thoughts
Regularly deleting old files helps keep your system optimized and clutter-free. Whether you choose 10, 30, or 90 days, Linux’s find command gives you total control over file cleanup - fast and automatic 
Last edited: