
The intent being that I plan to run these once a month and post the results on the forum.
6 lines
72 B
Bash
Executable file
6 lines
72 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for sql in ./*.sql
|
|
do
|
|
mysql < "$sql" > "${sql}.tsv"
|
|
done
|