Last active
March 30, 2025 07:00
-
-
Save JezDriver/77e3fd5a24b7381e52ec77bb1e6f0efb to your computer and use it in GitHub Desktop.
Export / import all databases #mysql #bash #terminal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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