LINE="a b"
echo $LINE
when I run this sh file, I get this output:
a b
I actually want to process a BAI2 file where spaces and indexes need to be accurate. I loop over each line and echo $line >> "${FILE}"
. So I need all the spaces in the line to be printed as it is. Please help me what I can do to solve this.