bash:wordsplitting
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
bash:wordsplitting [2021/01/09 15:42] – peter | bash:wordsplitting [2021/01/09 15:51] (current) – [Controlling Word Splitting] peter | ||
---|---|---|---|
Line 107: | Line 107: | ||
---- | ---- | ||
- | ===== Test with CommandSubstitution | + | ===== Test with Command Substitution |
<code bash> | <code bash> | ||
Line 118: | Line 118: | ||
total 2864 | total 2864 | ||
-rw-r--r-- 1 greg greg 2919154 2001-05-23 00:48 Yello - Oh Yeah.mp3 | -rw-r--r-- 1 greg greg 2919154 2001-05-23 00:48 Yello - Oh Yeah.mp3 | ||
+ | </ | ||
+ | |||
+ | Now run against the test script: | ||
<code bash> | <code bash> | ||
Line 133: | Line 136: | ||
===== Controlling Word Splitting ===== | ===== Controlling Word Splitting ===== | ||
- | As you can see above, we usually do not want to let word splitting occur when filenames are involved. | + | As you can see above, we usually do not want to let word splitting occur when filenames are involved. |
- | Double quoting an expansion suppresses word splitting, except in the special cases of " | + | Double quoting an expansion suppresses word splitting, except in the special cases of < |
<code bash> | <code bash> | ||
var=" | var=" | ||
- | </code | + | </code> |
returns: | returns: | ||
Line 159: | Line 162: | ||
</ | </ | ||
- | " | + | <WRAP info> |
+ | **NOTE: | ||
There are very complicated rules involving whitespace characters in IFS. Quoting the man page again: | There are very complicated rules involving whitespace characters in IFS. Quoting the man page again: | ||
Line 170: | Line 174: | ||
We won't explore those rules in depth here, except to note the part about sequences of non-whitespace characters. | We won't explore those rules in depth here, except to note the part about sequences of non-whitespace characters. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== IFS with non-whitespace characters ===== | ||
If IFS contains non-whitespace characters, then empty words can be generated: | If IFS contains non-whitespace characters, then empty words can be generated: | ||
Line 175: | Line 185: | ||
<code bash> | <code bash> | ||
getent passwd sshd | getent passwd sshd | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
sshd: | sshd: | ||
+ | </ | ||
- | IFS=:; | + | ---- |
+ | |||
+ | Set IFS | ||
+ | |||
+ | <code bash> | ||
+ | IFS=:; | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
7 args: < | 7 args: < | ||
+ | </ | ||
+ | Unset IFS | ||
+ | |||
+ | <code bash> | ||
unset IFS | unset IFS | ||
</ | </ | ||
- | There was another empty word generated in one of our previous examples, where IFS was set to /. The observant reader will have noticed, therefore, that non-whitespace IFS characters are not ignored at the beginning and end of expansions, the way whitespace IFS characters are. | + | <WRAP info> |
+ | **NOTE: | ||
- | Whitespace | + | * non-whitespace |
- | Finally, we note that pathname | + | Whitespace IFS characters get consolidated. |
+ | |||
+ | * Multiple spaces in a row, for example, have the same effect as a single space, when IFS contains a space (or is not set at all). | ||
+ | * Newlines also count as whitespace for this purpose, which has important ramifications when attempting to load an array with lines of input. | ||
+ | |||
+ | </ | ||
+ | |||
+ | Pathname | ||
<code bash> | <code bash> | ||
Line 193: | Line 231: | ||
qmaild: | qmaild: | ||
- | IFS=:; | + | IFS=:; |
737 args: < | 737 args: < | ||
Line 199: | Line 237: | ||
</ | </ | ||
- | The * word, produced by the shell' | + | The **< |
+ | |||
+ | * This can be disastrous if it happens unexpectedly. | ||
+ | * As with most of the dangerous features of the shell, it is retained because " | ||
+ | * In fact, it can be used for good, if you're very careful: | ||
<code bash> | <code bash> | ||
files=' | files=' | ||
- | args $files | + | test.sh |
2 args: <Yello - Oh Yeah.mp3> | 2 args: <Yello - Oh Yeah.mp3> | ||
</ | </ | ||
- | Pathname expansion can be disabled with set -f or set -o noglob; though this can lead to surprising and confusing code. | + | <WRAP info> |
+ | **NOTE: | ||
+ | </ | ||
---- | ---- |
bash/wordsplitting.1610206935.txt.gz · Last modified: 2021/01/09 15:42 by peter