Skip to content

Instantly share code, notes, and snippets.

@sri
Created September 22, 2010 04:49
Show Gist options
  • Save sri/591161 to your computer and use it in GitHub Desktop.
Save sri/591161 to your computer and use it in GitHub Desktop.
#! /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