This is my code:
while IFS=',' read a b c; do
read input
echo $input
done 3<&0 < input.csv > output.txt
I took care of input redirection by redirecting through pipeline. But still,when I run the above code, control does not stop for input.
Why?