Skip to content

Instantly share code, notes, and snippets.

@theking2
Created February 5, 2025 15:07
Show Gist options
  • Save theking2/88f1fb284f36f0cf91e2a2352002c054 to your computer and use it in GitHub Desktop.
Save theking2/88f1fb284f36f0cf91e2a2352002c054 to your computer and use it in GitHub Desktop.
Import Mariadb Dump
@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