Created
February 5, 2025 15:07
-
-
Save theking2/88f1fb284f36f0cf91e2a2352002c054 to your computer and use it in GitHub Desktop.
Import Mariadb Dump
This file contains 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
@ECHO OFF | |
@ECHO Expanding | |
@tar -xf %1 | |
@ECHO Importing | |
@"C:\wamp\bin\mariadb\mariadb10.6.18\bin\mysql.exe" --user=username --password=password database < %~n1 | |
@ECHO Cleaning | |
@del %~n1 | |
@ECHO Post import | |
@pause | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment