mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-22 21:16:02 +00:00

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