shell - Understanding IFS - Unix & Linux Stack Exchange
Q1: Yes. “Field splitting” and “word splitting” are two terms for the same concept. Q2: Yes. If IFS is unset (i.e. after unset IFS), it is equivalent IFS being set to $' \t\n' (a space, a tab and a newline). If IFS is set to an empty value (that's...