Recently i found a utility in Perl in sourceforget.net
written by Aravind SV
I added two more lines at the bottom of the script so that it would
help to calculate the cost.
Add the below lines after 818 line so that it would tell you exactly the cost for Home 500 Plan
# corrected billing by balachandar m 12:26 AM 11/28/2005
# since we have 1024 MB of free usage per month
print "Corrected Billed usage: " . $usage . "KB = " . (($usage /
1024)-1024) . "MB\n";
printf "Corrected Billed usage For Plan 500: " . (($usage /
1024)-1024) . "MB = " . sprintf("%.2f", (($usage / 1024)-1024)*1.20) .
" INR\n";
Comments
neat, do you have a exe
neat, do you have a exe file? as in something i can run on the fly on windows?
Post new comment