[Freeciv-Dev] Re: (PR#9653) BUG: Maybe very easy, maybe not: savegame no
[Top] [All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
<URL: http://rt.freeciv.org/Ticket/Display.html?id=9653 >
For me the savegames seem to diverge at 1400 BC.
jason
#!/bin/bash
# usage: ./compare_games.sh dir1 dir2
echo $1 $2
cd $1
L1=`ls -1 civgame*`
cd ..
for i in $L1; do
STAT="";
if [ ! -s $2/$i ]; then
STAT="missing";
fi
cmp -s $1/$i $2/$i && STAT="identical";
echo "$i : $STAT";
done;
|
|