Skip to content

Instantly share code, notes, and snippets.

@WebSofter
Created April 25, 2023 00:40
Show Gist options
  • Save WebSofter/fe5d8c3083667c003bf4e91fae739baf to your computer and use it in GitHub Desktop.
Save WebSofter/fe5d8c3083667c003bf4e91fae739baf to your computer and use it in GitHub Desktop.
Export mysql dump with command bash script
#!/bin/sh
location=./`date +%Y%m%d_%H%M%S`_your_db.sql
mysqldump -u root --password='your_password' your_db > $location
gzip $location
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment