Tagged Questions
5
votes
2answers
158 views
Difference between single and double quotes in bash
In Bash shell scripting, what is the difference between single quotes ('') and double quotes ("")?
2
votes
4answers
117 views
Best quotes practice when it doesn't matter?
If I want to something like:
foo="bar baz"
foo='bar baz'
Is it best practice to use double-quotes or single-quotes?
2
votes
4answers
157 views
Nesting quotes in bash
I want to something like this in bash:
alias foo='bar="$(echo hello world | grep \"hello world\")"; echo $bar;'; foo
Expected output: hello world
Ouput: grep: world": No such file or directory
...
0
votes
1answer
52 views
How to use a pair of single-quotes inside double qoutes in bash?
I am going to write a bash script to manipulate user's data on mysql DB.
Here is the problem. I need to pass a variable's value into a Mysql query string:
read USERNAME;
echo "USE drupdb; SELECT ...
0
votes
1answer
95 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 ...
0
votes
2answers
185 views
Mixing Single and Double Quotations in Bash
Alright, I have a script that takes a few arguments, runs data, and then rsyncs the data out to a different server. The problem is that to run the data, I have to take one of the arguments and then ...