This is a very useful bit of code, used to search within files on a Linux server. Replace the . after find to search within […]
Continue readingTag: Bash
Recursively count the number of files on a Linux server
Simple script to recursively count the number of files on a Linux server. ls -laR | wc -l How this works: ls (lists folder contents), […]
Continue readingSimple MySQL Database Backup
Another simple backup script. This script builds on the rsync file backup to allow daily, monthly, and yearly incremental MySQL database backups. The backup will […]
Continue readingSimple rsync Backup
This is a simple rsync backup that creates daily, monthly, and yearly incremental backups. This type of script would allow for recovery of just about […]
Continue reading