I am writing a python script on Linux for twitter post using API, Is it possible to pass symbols like "(" ")" etc in clear text without apostrophes....

% ./twitterupdate this is me  #works fine
% ./twitterupdate this is bad :(( #this leaves a error on bash.

Is the only alternative is to enclose the text into --> "" ?? like..

% ./twitterupdate "this is bad :(("  #this will reduce the ease of use for the script

Is there any workaround?

link|improve this question

feedback

2 Answers

up vote 10 down vote accepted

Yes, quoting the string is the only way. Bash has its syntax and and some characters have special meaning. Btw, using "" is not enough, use apostrophes instead. Some characters will still get interpretted with normal quotation marks:

$ echo "lots of $$"
lots of 15570
$ echo 'lots of $$'
lots of $$
link|improve this answer
apostrophes.. oh that will do some good :) – Shiv Deepak May 15 '10 at 12:33
1  
+1 for the excellent example. – Dennis Williamson May 15 '10 at 13:44
feedback

http://www.gnu.org/software/bash/manual/bashref.html#Quoting

link|improve this answer
thanks for the link :) – Shiv Deepak May 15 '10 at 12:31
feedback

Your Answer

 
or
required, but never shown

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