mirror of https://github.com/interlegis/sapl.git
Eliseu Egewarth
7 years ago
committed by
Edward
2 changed files with 8 additions and 9 deletions
@ -1,11 +1,11 @@ |
|||
#!/bin/bash |
|||
|
|||
# (Re)cria todos os bancos postgres para migração |
|||
# cria um banco postgres (de mesmo nome) para cada banco mysql cujo nome começa com "sapl_" |
|||
|
|||
|
|||
if [ $# -eq 2 ]; then |
|||
parallel --verbose ./recria_um_db_postgres.sh :::: <(mysql -u $1 -p$2 -e 'show databases;' | grep '^sapl_' | grep -v '_copy$') |
|||
parallel --verbose -j+0 ./recria_um_db_postgres.sh :::: <(mysql -u $1 -p$2 -e 'show databases;' | grep '^sapl_' | grep -v '_copy$') |
|||
else |
|||
echo "USO:" |
|||
echo " ./recria_dbs_postgres.sh [usuário mysql] [senha mysql]" |
|||
fi; |
|||
|
|||
echo " $0 [usuário mysql] [senha mysql]" |
|||
fi; |
Loading…
Reference in new issue