2008-06-08 16:04:34 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
fixed=0
|
|
|
|
success=0
|
|
|
|
failed=0
|
|
|
|
broken=0
|
|
|
|
total=0
|
|
|
|
|
2010-06-02 02:13:44 +02:00
|
|
|
while read file
|
2008-06-08 16:04:34 +02:00
|
|
|
do
|
|
|
|
while read type value
|
|
|
|
do
|
2008-07-16 17:42:52 +02:00
|
|
|
case $type in
|
|
|
|
'')
|
|
|
|
continue ;;
|
2008-06-08 16:04:34 +02:00
|
|
|
fixed)
|
|
|
|
fixed=$(($fixed + $value)) ;;
|
|
|
|
success)
|
|
|
|
success=$(($success + $value)) ;;
|
|
|
|
failed)
|
|
|
|
failed=$(($failed + $value)) ;;
|
|
|
|
broken)
|
2008-07-16 17:42:52 +02:00
|
|
|
broken=$(($broken + $value)) ;;
|
2008-06-08 16:04:34 +02:00
|
|
|
total)
|
2008-07-16 17:42:52 +02:00
|
|
|
total=$(($total + $value)) ;;
|
2008-06-08 16:04:34 +02:00
|
|
|
esac
|
|
|
|
done <"$file"
|
|
|
|
done
|
|
|
|
|
|
|
|
printf "%-8s%d\n" fixed $fixed
|
|
|
|
printf "%-8s%d\n" success $success
|
|
|
|
printf "%-8s%d\n" failed $failed
|
|
|
|
printf "%-8s%d\n" broken $broken
|
|
|
|
printf "%-8s%d\n" total $total
|