Update – May 2013: I’ve received a few emails asking how to prevent this script from continuously eating up disk space… Rather than re-invent the wheel, I just use built in Linux commands in my root crontab that run once a day: 0 4 * * * find /home/tim/backups/ -mtime +10 -exec rm {} \;… Read more »
Posts Tagged: bash
Linux Tips: Setting aliases for frequent strings and commands
This was a great link that sums up creating aliases in your ~/.bashrc file for commonly used commands, with a few good ideas to boot: TechRepublic.com: 10 handy bash aliases