wesnoth/utils/mp-server/query-scripts/run-queries.sh
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

6 lines
72 B
Bash
Executable file

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