Add diff stats to compare-all.sh

This commit is contained in:
Mark Probst 2018-01-01 22:14:37 -08:00
Родитель afc206315a
Коммит 765e342724
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -20,8 +20,9 @@ for fn in `cd "$DIR1" ; find . -type f` ; do
set +e
diff -u "$f1" "$f2" >"$of"
set -e
stat=`diffstat -s "$of"`
lines=`cat "$of" | wc -l`
echo "$lines $fn"
echo "$lines $stat $fn"
else
echo "missing $fn"
fi