What is Word Splitting (or Word expansion) in Bash ?
word splitting is an expansion that splits a string into words. When passing a string to a function, the parameters will be parsed with the IFS value before being assigned. The shell scans the results...