mirror of
https://github.com/brian8544/turtle-wow.git
synced 2024-12-28 10:24:36 +00:00
7 lines
132 B
Bash
7 lines
132 B
Bash
cd ./patches
|
|
for filename in *.sql; do
|
|
if [ ! -f ${filename::-4}.zip ]; then
|
|
zip "${filename::-4}.zip" "${filename}";
|
|
fi
|
|
done
|