-
-
Save vikerian/283b6f80b5997ccfed08 to your computer and use it in GitHub Desktop.
Bash urlencode and urldecode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
urlencode() { | |
# urlencode <string> | |
local length="${#1}" | |
for (( i = 0; i < length; i++ )); do | |
local c="${1:i:1}" | |
case $c in | |
[a-zA-Z0-9~_-]) printf "$c" ;; | |
[.]) printf "%s" "%2e" ;; | |
*) printf '%s' "$c" | xxd -p -c1 | | |
while read c; do printf '%%%s' "$c"; done ;; | |
esac | |
done | |
} | |
urldecode() { | |
# urldecode <string> | |
local url_encoded="${1//+/ }" | |
printf '%b' "${url_encoded//%/\\x}" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment