Merge pull request #1346 from ianchesal/urltools

URL Tools Plugin
This commit is contained in:
Robby Russell 2012-10-09 06:35:01 -07:00
commit 9ba2ab3225
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
# URL Tools
# Adds handy command line aliases useful for dealing with URLs
#
# Taken from:
# http://ruslanspivak.com/2010/06/02/urlencode-and-urldecode-from-a-command-line/
alias urlencode='python -c "import sys, urllib as ul; print ul.quote_plus(sys.argv[1])"'
alias urldecode='python -c "import sys, urllib as ul; print ul.unquote_plus(sys.argv[1])"'