Pentarctagon 67c169ed80 Add scripts to pull various pieces of information from the MP database.
The intent being that I plan to run these once a month and post the results on the forum.
2020-03-26 14:54:53 -05:00

7 lines
72 B
Bash
Executable File

#!/bin/sh
for sql in ./*.sql
do
mysql < "$sql" > "${sql}.tsv"
done