Add PDF

You might also like

You are on page 1of 1

File: /home/abhijit/bin/add Page 1 of 1

#!/bin/bash
sum=0
while read -e i
do
echo "$i"
if [ "$i" != "" ]
then
sum=`expr $sum + "$i"`
fi
done
echo $sum

You might also like