https://github.com/vinugawade/ms-bkp
Bash script to backup all mysql databases as separate compressed files.
https://github.com/vinugawade/ms-bkp
bash bash-script cli command-line-tool database export github linux macos mysql mysql-database open-source opensource shell shell-scripts sql utility windows
Last synced: about 1 year ago
JSON representation
Bash script to backup all mysql databases as separate compressed files.
- Host: GitHub
- URL: https://github.com/vinugawade/ms-bkp
- Owner: vinugawade
- License: mit
- Created: 2023-02-11T02:27:57.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2025-01-10T04:24:20.000Z (over 1 year ago)
- Last Synced: 2025-04-20T01:14:59.192Z (about 1 year ago)
- Topics: bash, bash-script, cli, command-line-tool, database, export, github, linux, macos, mysql, mysql-database, open-source, opensource, shell, shell-scripts, sql, utility, windows
- Language: Shell
- Homepage: https://vinugawade.github.io/ms-bkp
- Size: 17.8 MB
- Stars: 11
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# MySQL Database Backup Script 🗄️







If you need to backup MySQL databases on a **Linux / MacOS / Windows** system, the `ms-bkp` script provides an easy-to-use solution. It allows you to export databases, skip specific ones, and set the destination path for the backup.
---
## Installation 🚀
1. **Clone the Repository:**
- Clone the [ms-bkp](https://github.com/vinugawade/ms-bkp) repository to your local machine using the following command:
```bash
git clone https://github.com/vinugawade/ms-bkp.git
```
2. **Move the Script to a Global Location:**
- Move the script to a global location on your system using the following command:
```bash
sudo mv /location/of/ms-bkp /usr/local/bin
```
3. **Set Script Permissions:**
- Allow everyone to execute the script by choosing one of the following commands:
```bash
sudo chmod +x /location/of/ms-bkp
```
OR
```bash
sudo chmod 0755 /location/of/ms-bkp
```
4. **Add to $PATH:**
- Add `/usr/local/bin` to your `$PATH`. If you use the Bash shell, execute the command:
```bash
export PATH=$PATH:/usr/local/bin
```
OR
```bash
export PATH=$PATH:/location/of/ms-bkp
```
This will set the variable name, potentially in a file like `~/.bash_profile`, `~/.bashrc`, or `~/.profile`. If you're unsure where to put it, `~/.bashrc` is a good choice.
> **You may need to restart your shell for this to take effect.**
---
## Script Options 🎛️
The `ms-bkp` script supports the following options:
- `-u, --user`: MySQL username
- `-p, --password`: MySQL password
- `-o, --only`: Export only the specified database
- `-s, --skip`: Skip specified databases during export (comma-separated)
- `-d, --dest`: Destination path for the backup (default: ~/Downloads)
---
## Usage 🛠️
Now you can use the script from anywhere in the terminal. Below are some examples.
```bash
ms-bkp -u your_mysql_user -p your_mysql_password -o your_database_name
```
```bash
ms-bkp -u your_mysql_user -p your_mysql_password -s db1,db2,db3 -d /path/to/backup
```
Check below attached GIF.

---
## Maintainer 👨🏻💻
Built With 💙✨ By Vinay Gawade.
---
## License 🛂

This project is licensed under the [LICENSE](https://github.com/vinugawade/ms-bkp/blob/master/LICENSE) file associated with this repository.