Thanks but I can't get it to work. I am on a linux system. I just did it on two lines but I know there's a way to get it to work on one.
mysql -u[user] -p[password] database < script1.sql
mysql -u[user] -p[password] database < script2.sq
that works but this doesn't
mysql -u[user] -p[password] database < cat script1.sql script2.sql
When i just type out cat script1.sql script2.sql the output is correct of course but when I feed it into the mysql command, I get this error:
cat: No such file or directory
I appreciate the post though.