Hi,
I have the following expression in an AWK script
nocpy= "'.*\.(bri|cmp).*'"
this is to be used in a egrep -v statement
But when I print nocpy I get: '.*.(bri|cmp).*' The \ has disappeared, why?
If I do a simple test
toto = "\"
print toto
I get an error??
Thanks,