I have a file called "physics 1b.sh".
In bash, if i try

x="physics 1b"
grep "string" "$x".sh

grep complains:

grep:  physics 1b: No such file or directory.

However, when I do

grep "string" physics\ 1b.sh 

It works fine. So I guess the problem is something to do with the variable not being expanded to include the backslash that grep needs to recognize the space. How do I get this to work?

Using bash 3.2, mac os 10.6.

Edit:
Never mind, the problem was that x was set to " physics 1b", but when I did echo $x to check the contents, bash chopped off the spaces in the front so I couldn't tell that it was different. The first way above actually works.

link|improve this question

Note that there is a space in front of '` physics 1b`' in the error from grep; are you sure it didn't mention .sh on the end of the file name? – Jonathan Leffler Mar 30 '10 at 7:12
hmm, i'm not sure. – Adam Mar 31 '10 at 0:18
feedback

3 Answers

up vote 4 down vote accepted

Put the entire argument in double-quotes:

grep "string" "$x.sh"
link|improve this answer
That shouldn't be necessary, even without the edit to the question, though it is often the best way to deal with the issue. – Jonathan Leffler Mar 30 '10 at 7:09
feedback

use this in your script.

grep "string" "${x}.sh"
link|improve this answer
feedback

another way

grep "string" "${x}.sh"
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.