I understand that in Bourne shell and derivates, IFS= sets IFS to null, so nothe shell won't perform any field splitting would occur.
I recall reading about:
echo "$*"IFS= echo "$*"
When I ran both commands, once in CentOS and once in WSL (uname -o = GNU/Linux only so I don't know the distribution) I only got empty lines.
What does the above test command mean and is it really a good case to learn about IFS (if not, what simple, two lines, test would you suggest)?