TOP 10 largest file # find /var -type f -ls | sort -k 7 -r -n | head -10
FIND FILES MORE THAN 5Gb # find /var/log/ -type f -size +5120M -exec ls -lh {} \;
Find all temp files older than a month and delete: # find /usr/home/admin/Maildir/new -mtime +30-type f | xargs /bin/rm […]
Recent Comments