Hi List,
Got a file with comma seperated values:
190,C:\test\test
I'm loading them in a script like:
while IFS=',' read NUMBER VALUE
do
echo $VALUE
done
The value is echo's= "C:testtest"
It stripped the \ from the column.
How can I make it not eat \ characters here ?
Thanks!
Got a file with comma seperated values:
190,C:\test\test
I'm loading them in a script like:
while IFS=',' read NUMBER VALUE
do
echo $VALUE
done
The value is echo's= "C:testtest"
It stripped the \ from the column.
How can I make it not eat \ characters here ?
Thanks!