You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
255 B
10 lines
255 B
5 years ago
|
#!/bin/sh
|
||
|
|
||
|
MYSQL_DEFAULTS_FILE="my.cnf"
|
||
|
MYSQL="mysql --defaults-file=$MYSQL_DEFAULTS_FILE"
|
||
|
|
||
|
echo "This is what would be executed if this wasn't a fake script:"
|
||
|
echo
|
||
|
echo "echo 'DROP DATABASE $target_db' | $MYSQL"
|
||
|
echo "$MYSQL ${target_db} < ${sql_file}"
|