标签:
第一版:
#!/bin/bash USER="root" DATABASE="test" TABLE="user" mysql -u $USER $DATABASE --html --default-character-set=utf8 < one.sql > /tmp/check.html mysql -u $USER $DATABASE --html --default-character-set=utf8 < two.sql >> /tmp/check.html
第二版:
#!/bin/bash USER="root" DATABASE="test" TABLE="user" #:>/tmp/check.html for i in one.sql two.sql three.sql; do mysql -u $USER $DATABASE --html --default-character-set=utf8 < $i >> /tmp/check.html done
第三版:
#!/bin/bash USER="root" DATABASE="test" TABLE="user" for i in `ls *.sql`; do mysql -u $USER $DATABASE --html --default-character-set=utf8 < $i >> /tmp/check.html done
http://bbs.chinaunix.net/thread-4166340-1-1.html
shell脚本中怎样同时执行多个.sql文件,并把结束写入文件中(转)
标签:
原文地址:http://www.cnblogs.com/softidea/p/4237098.html