ENCODED=$(echo -n "value to encode" | \
perl -pe's/([^-_.~A-Za-z0-9])/sprintf("%%%02X", ord($1))/seg');
echo $ENCODED
This command line percent-encodes strings, even binary data. You can use redirection. I used `echo -n` because I didn’t want a newline (%0A) tagged onto the end. I’ll be using this in a bash script to send HTTP POST data via curl.
My result is based on Perl URL Encode & Decode String, modified to be run on the command line and updated to skip the four non-alphanumeric unreserved characters specified in RFC 3986 Section 2.3.
I don’t know if this depends on Perl multibyte settings or anything else. I might have just been lucky. Perl isn’t my thing.
November 3, 2008 at 10:52 am |
Wow. Google for “bash function url encode” and you can’t hope for better results than this!
Thanks!
January 14, 2009 at 6:07 pm |
you don’t need to do this, curl encodes the data: curl -d “option=arg”
August 20, 2009 at 9:28 pm |
perl -MURI::Escape -e ‘print uri_escape(“=+%”) . “\n”‘