shell - Why is `while IFS= read` used so often, instead of `IFS=; while read..`? - Unix & Linux Stac
It seems that normal practice would put the setting of IFS outside the while loop in order to not repeat setting it for each iteration... Is this just a habitual "monkey see, monkey do" style, as it has been for this monkey until I read man read, or am I ...