Skip to content

Instantly share code, notes, and snippets.

@mrubin
Forked from cdown/gist:1163649
Created May 15, 2014 18:43
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 mrubin/88888145cb2625003299 to your computer and use it in GitHub Desktop.
Save mrubin/88888145cb2625003299 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 '%%%02X' "'$c"
esac
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment