vote up 2 vote down star

This is driving me nuts. Everything in single quotes is supposed to be assigned as is, yet if I do the following:

TEST=' .* '

echo $TEST

I get a bunch of garbage on the screen listing all "dot" files in the current directory...

Any help would be appreciated.

flag

60% accept rate

2 Answers

vote up 17 vote down check
echo "$TEST"

If you don't quote the variable, it is expanded on the second command line.

link|flag
vote up 1 vote down

It actually assigns ".*" to TEST. It only expands to the file listing when you echo it.

link|flag

Your Answer

Get an OpenID
or

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