2
votes
2answers
71 views

If Statement To Match A String Containing Double Quotations

I've an issue with an if statement in my bash script. The goal: I need to check a value of clustered, but since it's not a unique name, I decided to try to match the whole string. For example, to ...
0
votes
1answer
52 views

bash variable string with quotes and double quotes

I need to store a string in a variable on bash. Here the string... 7;310000000007;1390;30000001390;119;130000000119;;;;;939738;30;ST;DESCRIPTION TEXT TEXT " TEXT ' TEXT text;20130318; 1.40;; ...
2
votes
1answer
198 views

Escape single quotes ssh remote command

I read any solutions for escape single quotes on remote command over ssh. But any work fien. I'm trying ssh root@server "ps uax|grep bac | grep -v grep | awk '{ print $2 }' > /tmp/back.tmp" ...
1
vote
1answer
53 views

bash variable inside quotes

I want to run the following command ssh data@server.org "cd /home/data/ ; chmod o+rx directory_$DATE" $DATE is a bash variable. Is there a way to get it interpreted as a variable?
1
vote
2answers
98 views

bash string as argument for executable in quotes

im sure this is simple. ive' tried a number of possibilities with no luck. im seeking to execute the following in shell. ./secondexecutable -t "A string with spaces" -s "Another string with spaces" ...
1
vote
4answers
209 views

How to use bash variable with a quoted string in BASH script

I have a bash variable data='Type=Eatable Fruits="Apple Orange"', and a script (print.sh) simply printing the first, second and third command line argument. When I passed the variable data to the ...
1
vote
2answers
269 views

How to include double quotation in Tcl or Expect commands for passwords or file names with white spaces?

I have two scripts to run in local computer shell The first script is a BASH shell which calls an expect script inside itself The bash shell is as follow BASH SHELL SCRIPT SaveOnRemote.sh ...
2
votes
2answers
51 views

how to show single quote in single-quoted text

I have a bash script, echo 'abcd' in shell, I want to show ab'c'd and I have tried following approach but without success echo 'ab\'c\'d' I am asking is it possible to show single quote in ...
2
votes
2answers
58 views

How to keep strings quoted in bash parameters

I have a Bash script which passes patterns and switches to grep. #!/bin/bash foo() { grep $@ *.txt } foo $@ And, of course, myscript SomeText works but myscript "Text1 Text2" does not. Is ...
-1
votes
1answer
366 views

How to do a proper double or triple bash quote escape?

#!/bin/bash # this works: java '-XX:OnOutOfMemoryError=nohup bash -c "service jira stop;service jira stop" &' -version JVM_SUPPORT_RECOMMENDED_ARGS="" # WHAT TO PUT HERE !?! so the last line will ...
0
votes
2answers
98 views

JRuby statement in a bash script with environment variables

I have a Rails application which uses Resque for a job queue. The Resque worker class is "JobDo" and is in app/workers/job_do.rb I have a script (jobdo.sh) which will put a job onto the queue: jruby ...
0
votes
2answers
216 views

How can i delete double quote in bash file.(Linux)

for i in $(some function); do somefunction2 $i; done -su: 0 5 : syntax error in expression (error token is "5 ") My problem is some function return "0 9" I can't use this: for i in "0 5"; do ...