开发者

Encoding an ampersand for twitter w/ curl

Here's my code:

开发者_如何学Gocurl -u "u:d" --data-urlencode "status=`echo $@|tr ' ' '+'|tr '&' '%26'`" "http://twitter.com/statuses/update.json"

But when it goes to twitter, the '&' turns into '%'. What am I doing wrong? Thanks!


tr performs individual character replacement.

It replaces & with % because that's what you told it to do.

You want something like sed which does more than just character-by-character substitution.


sed "s/\&/\%26/g"

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜