mirror of
https://github.com/fccview/cronmaster.git
synced 2026-01-01 18:39:12 -05:00
12 lines
325 B
Bash
12 lines
325 B
Bash
# @id: clean-temp
|
|
# @title: Clean temporary files
|
|
# @description: Remove old temporary files
|
|
# @category: File Operations
|
|
# @tags: temp,cleanup,maintenance
|
|
|
|
# Clean temporary files
|
|
# Remove files older than 7 days
|
|
|
|
find /tmp -type f -atime +7 -delete
|
|
find /tmp -type d -empty -delete
|
|
find ~/.cache -type f -atime +30 -delete |