mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50:08 +00:00
9 lines
329 B
Bash
9 lines
329 B
Bash
# 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='node -e "console.log(encodeURIComponent(process.argv[1]))"'
|
|
|
|
alias urldecode='node -e "console.log(decodeURIComponent(process.argv[1]))"'
|