Skip to content

Instantly share code, notes, and snippets.

@ericcholis
Created April 14, 2015 12:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericcholis/8854abe3c214848185ee to your computer and use it in GitHub Desktop.
Save ericcholis/8854abe3c214848185ee to your computer and use it in GitHub Desktop.
Currency Conversion
#!/usr/bin/env bash
curl "http://www.xe.com/wap/2co/convert.cgi?Amount=$1&From=$2&To=$3" -A "Mozilla" -s | sed -n "s/.*>\(.*\) $3<.*/\1/p";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment