]> icculus.org git repositories - divverent/nexuiz.git/blob - data/cfg-hierarchy.sh
sry, used true instead of TRUE in the rpn, which does work in menu code but not in...
[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