Last active
August 29, 2015 14:05
-
-
Save jpcercal/177022261216831b1351 to your computer and use it in GitHub Desktop.
Import database MySQL with Progress Bar
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
| # apt-get install pv | |
| # pv -t -p <your-filename>.sql | mysql -u <your-username> -p -D <your-database-name> | |
| pv -t -p database.sql | mysql -u root -p -D test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment