Você pode obter os nomes de tabela que deseja do mysql e usá-los para criar seus parâmetros de despejo do mysql.
No exemplo abaixo, basta substituir "someprefix" pelo seu prefixo (por exemplo, "exam_").
A SHOW TABLES
consulta pode ser alterada para encontrar outros conjuntos de tabelas. Ou você pode usar uma consulta na INFORMATION_SCHEMA
tabela para usar ainda mais critérios.
#/bin/bash
#this could be improved but it works
read -p "Mysql username and password" user pass
#specify your database, e.g. "mydb"
DB="mydb"
SQL_STRING='SHOW TABLES LIKE "someprefix%";'
DBS=$(echo $SQL_STRING | mysql -u $user -p$pass -Bs --database=$DB )
#next two lines untested, but intended to add a second excluded table prefix
#ANOTHER_SQL_STRING='SHOW TABLES LIKE "otherprefix%";'
#DBS="$DBS""\n"$(echo $ANOTHER_SQL_STRING | mysql -u $user -p$pass -Bs --database=$DB )
#-B is for batch - tab-separated columns, newlines between rows
#-s is for silent - produce less output
#both result in escaping special characters
#but the following might not work if you have special characters in your table names
IFS=$'\n' read -r -a TABLES <<< $DBS
IGNORE="--ignore_table="$DB"."
IGNORE_TABLES=""
for table in $TABLES; do
IGNORE_TABLES=$IGNORE_TABLES" --ignore_table="$DB"."$table
done
#Now you have a string in $IGNORE_TABLES like this: "--ignore_table=someprefix1 --ignore_table=someprefix2 ..."
mysqldump $DB --routines -u $user -p$pass $IGNORE_TABLES > specialdump.sql
Isso foi criado com a ajuda desta resposta sobre como obter "todas as tabelas com exclusão no bash": https://stackoverflow.com/a/9232076/631764
e esta resposta sobre ignorar tabelas com algumas partes usadas: https://stackoverflow.com/a/425172/631764