Created
September 22, 2010 04:49
-
-
Save sri/591161 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env ruby | |
# usd2rs AMOUNT - convert from US dollars to Indian Rupees | |
# Prints out Rupees in Lakhs & Crores as necessary | |
require 'open-uri' | |
LAKH, CRORE = 100_000, 10_000_000 | |
dollars = (ARGV[0] || begin; printf "Dollars? "; gets.chomp; end). | |
gsub(/,/, ''). | |
to_i | |
rate = open("http://www.google.com/finance/converter?a=1&from=USD&to=INR"). | |
read. | |
scan(/class=bld>(\d*[.]?\d*)/)[0][0].to_f | |
rupees = dollars * rate | |
puts "(1 USD = Rs. #{rate})" | |
if rupees < LAKH | |
puts "Rs. #{rupees}" | |
elsif rupees >= CRORE | |
puts "Rs. #{rupees/CRORE} crores" | |
else | |
puts "RS. #{rupees/LAKH} lakhs" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment