Hey,
A really simple shell script question. I have a file with something like this:
var "aaaaa"
var "bbbbb"
...
Now, how can I assign the string in quotes to a variable? This is what I have now (but I'm missing the assign part...):
while read line
do
echo $line | cut -d" " -f3
done
which prints what I want... how do I save it to a variable?
Thanks