2022-12-21 12:34:17 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
FILE="$1.sql"
|
2023-08-11 13:41:03 +00:00
|
|
|
if [[ ! -f "$FILE" ]] ; then
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2022-12-21 12:34:17 +00:00
|
|
|
echo "[LOG] -> Importing $FILE"
|
|
|
|
export MYSQL_PWD=root
|
|
|
|
mysql -u root --default-character-set=utf8 --comments -f < "$FILE"
|