]> icculus.org git repositories - divverent/nexuiz.git/blob - data/cfg-hierarchy.sh
remove unused (w_*.zym for the models that weren't in 2.4.2 - the 2.4.2 ones are...
[divverent/nexuiz.git] / data / cfg-hierarchy.sh
1 #!/bin/sh
2
3 prev=omg
4 for cfg in low med normal high ultra ultimate; do
5         echo "$prev.cfg -> $cfg.cfg:"
6         diff "$prev.cfg" "$cfg.cfg" | grep ^\>
7         echo
8         prev=$cfg
9 done