Timothy Bryant Jr.

Brief Musings: Short Posts for Quick Insights and Thoughts

Summary

Backing up your MySQL database regularly is important to protect against data loss. I use this Bash script to automate the backup process and make it easier to keep my database backed up regularly. The script creates a backup of all databases and compresses it into a zip file. It also dele...

Summary

Backing up your PostgreSQL database is an important task that should be performed regularly to protect against data loss. One way to automate this process is by using a Bash script and cronjob. A Bash script is a simple way to automate tasks on a server, and it can be used to create backup...