-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathurlencode-functions.zsh
27 lines (24 loc) · 1.13 KB
/
urlencode-functions.zsh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# source to add url-encode and url-decode
# see https://stackoverflow.com/a/29565580/370746 & https://stackoverflow.com/a/35512655/370746
url-encode() {
if [[ "$1" == "-h" || "$1" == "-?" || "$1" == "--help" ]] ; then
echo " URL Encodes first argument or stdin"
echo " Usage: url-encode [ <string> ]"
echo " Example: url-encode 'This & that!'"
echo " Output: This%20%26%20that%21"
else
if which python >/dev/null ; then local py=python ; else local py=python3 ; fi
"$py" -c $'try: import urllib.parse as urllib\nexcept: import urllib\nimport sys\nprint(urllib.quote(sys.argv[1]))' "${1:-$(</dev/stdin)}"
fi
}
url-decode() {
if [[ "$1" == "-h" || "$1" == "-?" || "$1" == "--help" ]] ; then
echo " Decodes URL encoded first argument or stdin"
echo " Usage: url-decode [ <string> ]"
echo " Examle: url-decode This%20%26%20that%21"
echo " Output: This & that!"
else
if which python >/dev/null ; then local py=python ; else local py=python3 ; fi
"$py" -c $'try: import urllib.parse as urllib\nexcept: import urllib\nimport sys\nprint(urllib.unquote(sys.argv[1]))' "${1:-$(</dev/stdin)}"
fi
}