This commit is contained in:
BotoX
2017-08-04 03:49:04 +02:00
parent e05a9ac0b4
commit 567921eb88
16 changed files with 314 additions and 184 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
for map in ./*.cfg; do
mapname=$(basename -s .cfg "${map}")
if [ ! -f ../../../../maps/$mapname.bsp ]; then
echo "$map"
fi
done