3 # Script para ejecutar todos los sql de un directorio.
5 # Creado por Leandro Lucarella (llucar) el mié ene 22 18:20:06 ART 2003
8 # Parámetros de la línea de comandos.
16 echo "run-sql-data-parts: Procesando '$home'..."
17 for file in `ls "$home"`; do
18 echo " $host: Cargando '$file'..."
19 cat <<EOT | mysql -h"$host" -u"$user" -p"$pass" "$db"
21 load data infile '$home/$file'
22 replace into table $file
23 fields terminated by ','
24 lines terminated by '\n'