Linux Know-How provides a collection of introductory texts on often needed Linux skills. |
Home Bash Guide for Beginners The Bash environment Shell Expansion Word splitting | ||||||
See also: Conditionals | ||||||
Search the VIAS Library | Index | ||||||
Word splittingThe shell scans the results of parameter expansion, command substitution, and arithmetic expansion that did not occur within double quotes for word splitting.
Explicit null arguments ("""" or "''") are retained. Unquoted implicit null arguments, resulting from the expansion of parameters that have no values, are removed. If a parameter with no value is expanded within double quotes, a null argument results and is retained.
|
||||||
Home Bash Guide for Beginners The Bash environment Shell Expansion Word splitting |