david/scripts-archive
david
/
scripts-archive
Archived
1
0
Fork 0
This repository has been archived on 2022-04-16. You can view files and clone it, but cannot push or open issues or pull requests.
scripts-archive/db/restore_mysql_db.sh

11 lines
93 B
Bash
Executable File

#!/bin/bash
user=root
pass=xxxx
db=database
file=$1
mysql -u$user -p$pass -f $db < $file