What does IFS= do in this bash loop: `cat file | while IFS= read -r line; do ... done` - Stack Overf
I'm learning bash and I saw this construction: cat file | while IFS= read -r line; do ... done Can anyone explain what IFS= do? I know it's input field sepereter, but it's being set to ......