]> icculus.org git repositories - divverent/nexuiz.git/blob - data/cfg-hierarchy.sh
winning condition:equality shall NOT hold for 0:0 (to make timelimit -1 work on empty...
[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