up vote 16 down vote favorite
8
share [g+] share [fb]

I am trying to write a bash script for testing that takes a parameter and sends it through curl to web site. I need to url encode the value to make sure that special characters are processed properly. What is the best way to do this?

Here is my basic script so far:

#!/bin/bash
host=${1:?'bad host'}
value=$2
shift
shift
curl -v -d "param=${value}" http://${host}/somepath $@
link|improve this question
feedback

12 Answers

up vote 24 down vote accepted

Use Perl's URI::Escape module and uri_escape function in the second line of your bash script:

...

value="$(perl -MURI::Escape -e 'print uri_escape($ARGV[0]);' "$2")"
...

Edit: Fix quoting problems, as suggested by Chris Johnsen in the comments. Thanks!

link|improve this answer
URI::Escape might not be installed, check my answer in that case. – blueyed Nov 10 '09 at 19:50
1  
This won't work if $2 contains an apostrophe. – nes1983 Jan 1 '10 at 15:53
I fixed this (use echo, pipe and <>), and now it works even when $2 contains an apostrophe or double-quotes. Thanks! – dubek Jan 3 '10 at 9:35
2  
You do away with echo, too: value="$(perl -MURI::Escape -e 'print uri_escape($ARGV[0]);' "$2")" – Chris Johnsen Jan 3 '10 at 10:31
Chris Johnsen's version is better. I had ${True} in my test expression and using this via echo tripped up uri_escape / Perl variable expansion. – mm2001 Jan 7 '10 at 16:35
feedback

Or just use curl --data-urlencode

link|improve this answer
That worked great. I did have to update 'sudo port install curl' since this is a pretty new feature. – Eric Pugh May 18 '10 at 19:57
feedback

I've found the following snippet useful to stick it into a chain of program calls, where URI::Escape might not be installed:

perl -p -e 's/([^A-Za-z0-9])/sprintf("%%%02X", ord($1))/seg'

(via)

link|improve this answer
feedback

Direct link to awk version : http://www.shelldorado.com/scripts/cmds/urlencode
I used it for years and it works like a charm

link|improve this answer
feedback

I find it more readable in python:

encoded_value=$(python -c "import urllib; print urllib.quote('''$value''')")

the triple ' ensures that single quotes in value won't hurt. urllib is in the standard library. It work for exampple for this crazy (real world) url:

"http://www.rai.it/dl/audio/" "1264165523944Ho servito il re d'Inghilterra - Puntata 7
link|improve this answer
I had some trouble with quotes and special chars with the triplequoting, this seemed to work for basically everything: encoded_value="$( echo -n "${data}" | python -c "import urllib; import sys; sys.stdout.write(urllib.quote(sys.stdin.read()))" )"; – sequoia mcdowell Nov 14 '11 at 14:33
feedback
url=$(echo "$1" | sed -e 's/%/%25/g' -e 's/ /%20/g' -e 's/!/%21/g' -e 's/"/%22/g' -e 's/#/%23/g' -e 's/\$/%24/g' -e 's/\&/%26/g' -e 's/'\''/%27/g' -e 's/(/%28/g' -e 's/)/%29/g' -e 's/\*/%2a/g' -e 's/+/%2b/g' -e 's/,/%2c/g' -e 's/-/%2d/g' -e 's/\./%2e/g' -e 's/\//%2f/g' -e 's/:/%3a/g' -e 's/;/%3b/g' -e 's//%3e/g' -e 's/?/%3f/g' -e 's/@/%40/g' -e 's/\[/%5b/g' -e 's/\\/%5c/g' -e 's/\]/%5d/g' -e 's/\^/%5e/g' -e 's/_/%5f/g' -e 's/`/%60/g' -e 's/{/%7b/g' -e 's/|/%7c/g' -e 's/}/%7d/g' -e 's/~/%7e/g')

this will encode the string inside of $1 and output it in $url. although you don't have to put it in a var if you want. BTW didn't include the sed for tab thought it would turn it into spaces

link|improve this answer
2  
I get the feeling this is not the recommended way to do this. – Cody Gray Jan 11 '11 at 13:27
1  
explain your feeling please.... because I what I have stated works and I have used it in several scripts so I know it works for all the chars I listed. so please explain why someone would not use my code and use perl since the title of this is "URLEncode from a bash script" not a perl script. – manoflinux Feb 8 '11 at 2:55
sometimes no pearl solution is needed so this can come in handy – Yuval Rimar Oct 31 '11 at 11:31
This is not the recommended way to do this because blacklist is bad practice, and this is unicode unfriendly anyway. – Ekevoo Dec 20 '11 at 14:16
feedback

for the sake of completeness, many solutions using sed or awk only translate a special set of characters and are hence quite large by code size and also dont translate other special characters that should be encoded.

a safe way to urlencode would be to just encode every single byte - even those that would've been allowed.

echo foobar | xxd -plain | tr -d '\n' | sed 's/\(..\)/%\1/g'

xxd is taking care here that the input is handled as bytes and not characters.

link|improve this answer
Nicely done-- good to see a one-liner that uses just the shell. – joelparkerhenderson Sep 24 '11 at 1:10
feedback

For those of you looking for a solution that doesn't need perl, here is one that only needs hexdump and awk:

url_encode() {
 [ $# -lt 1 ] && { return; }

 encodedurl="$1";

 # make sure hexdump exists, if not, just give back the url
 [ ! -x "/usr/bin/hexdump" ] && { return; }

 encodedurl=`
   echo $encodedurl | hexdump -v -e '1/1 "%02x\t"' -e '1/1 "%_c\n"' |
   LANG=C awk '
     $1 == "20"                    { printf("%s",   "+"); next } # space becomes plus
     $1 ~  /0[adAD]/               {                      next } # strip newlines
     $2 ~  /^[a-zA-Z0-9.*()\/-]$/  { printf("%s",   $2);  next } # pass through what we can
                                   { printf("%%%s", $1)        } # take hex value of everything else
   '`

}

Stitched together from a couple of places across the net and some local trial and error. It works great!

link|improve this answer
feedback

I knew I'd seen how to do it: http://andy.wordpress.com/2008/09/17/urlencode-in-bash-with-perl/

link|improve this answer
This approach converts newlines into spaces (major). And encodes spaces as %20 instead of + (minor). – Aaron Nov 17 '08 at 21:46
feedback

If you don't want to depend on Perl you can also use sed:

http://www.unix.com/shell-programming-scripting/59936-url-encoding.html

link|improve this answer
The link seems dead – Grigory Javadyan Dec 23 '11 at 0:10
feedback

If you wish to run GET request and use pure curl just add --get to @Jacob's solution.

Here is an example:

curl -v --get --data-urlencode "access_token=$(cat .fb_access_token)" https://graph.facebook.com/me/feed
link|improve this answer
feedback

Here's a one-line conversion using Lua, similar to blueyed's answer except with all the RFC 3986 Unreserved Characters left unencoded (like this answer) and spaces encoded as '+' instead of '%20' (which could probably be added to the Perl snippet using a similar technique):

url=$(echo "$1" | lua -e'print(arg[1]:gsub("([^%w%-%.%_%~ ])",function(c)return("%%%02X"):format(c:byte())end):gsub(" ","+"))')

Additionally, you may need to ensure that newlines in your string are converted from LF to CRLF, in which case you can insert a gsub("\r?\n", "\r\n") in the chain before the percent-encoding, like so:

url=$(echo "$1" | lua -e'print(arg[1]:gsub("\r?\n", "\r\n"):gsub("([^%w%-%.%_%~ ])",function(c)return("%%%02X"):format(c:byte())end):gsub(" ","+"))')
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.