Skip to content

Instantly share code, notes, and snippets.

@dvliman
Forked from cdown/gist:1163649
Created December 5, 2013 04:33
Show Gist options
  • Save dvliman/7800162 to your computer and use it in GitHub Desktop.
Save dvliman/7800162 to your computer and use it in GitHub Desktop.
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 + ;;
*) printf '%%%X' "'$c"
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