11 lines
148 B
Bash
Executable File
11 lines
148 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for map in ./*.cfg; do
|
|
mapname=$(basename -s .cfg "${map}")
|
|
|
|
if [ ! -f ../../../../maps/$mapname.bsp ]; then
|
|
echo "$map"
|
|
fi
|
|
done
|
|
|