1 #!/bin/sh
2
3 F=/tmp/delivery_count
4
5 if [ ! -f $F ] ; then
6 echo "1" > $F
7 else
8 i=`cat $F`
9 i=$(($i+1))
10 echo $i > $F
11 fi