Skip to content

Instantly share code, notes, and snippets.

@JezDriver
Last active March 30, 2025 07:00
Show Gist options
  • Select an option

  • Save JezDriver/77e3fd5a24b7381e52ec77bb1e6f0efb to your computer and use it in GitHub Desktop.

Select an option

Save JezDriver/77e3fd5a24b7381e52ec77bb1e6f0efb to your computer and use it in GitHub Desktop.
Export / import all databases #mysql #bash #terminal
# Export
mysqldump --all-databases > all_databasess.sql
# Import
mysql -u root < all_databasess.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment