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 uid  FROM users WHERE name= '%USERNAME';"  > /tmp/query.sql ;

Whatever combinations that I've used (including backslashs befor single-quotes to scape them) did not do the trick. I still get something other than the value of %USERNAME inside the query.sql.

I appreciate your hints.

link|improve this question

67% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You need to use $ to dereference a variable. Change %USERNAME to $USERNAME and everything should work fine:

read USERNAME;
echo  "USE drupdb; SELECT uid  FROM users WHERE name= '$USERNAME';"
link|improve this answer
oops! thanks a lot! – qliq Aug 23 '11 at 18:07
feedback

Your Answer

 
or
required, but never shown

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