Skip to content

Instantly share code, notes, and snippets.

@MindGeek
Last active June 21, 2018 12:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MindGeek/69f056090453300912ff47ecc19be75d to your computer and use it in GitHub Desktop.
Save MindGeek/69f056090453300912ff47ecc19be75d to your computer and use it in GitHub Desktop.
#!/bin/bash
function urlencode() {
# urlencode <string>
old_lc_collate=$LC_COLLATE
LC_COLLATE=C
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 '%%%02X' "'$c" ;;
esac
done
LC_COLLATE=$old_lc_collate
}
function 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