]> icculus.org git repositories - divverent/nexuiz.git/blob - data/cfg-hierarchy.sh
change all function declarations (except builtins and data types) to ANSI C-like...
[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