Commit f69b05b0 authored by Robby Russell's avatar Robby Russell
Browse files

Merge pull request #1445 from knxroot/master

urltools more fast
parents 533a2819 3b6fae14
......@@ -4,6 +4,6 @@
# 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 urlencode='node -e "console.log(encodeURIComponent(process.argv[1]))"'
alias urldecode='python -c "import sys, urllib as ul; print ul.unquote_plus(sys.argv[1])"'
\ No newline at end of file
alias urldecode='node -e "console.log(decodeURIComponent(process.argv[1]))"'
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment