User Tools

Site Tools


bash:wordsplitting

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
bash:wordsplitting [2021/01/09 15:42] – [Test with CommandSubstitution] peterbash: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 136: 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. (See BashPitfalls for a discussion of this particular issue.)+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 "$@" and "${array[@]}":+Double quoting an expansion suppresses word splitting, except in the special cases of <nowiki>"$@"</nowiki> and <nowiki>"${array[@]}"</nowiki>:
  
 <code bash> <code bash>
 var="This is a variable"; test.sh "$var" var="This is a variable"; test.sh "$var"
-</code+</code>
  
 returns: returns:
Line 162: Line 162:
 </code> </code>
  
-"$@" causes each positional parameter to be expanded to a separate word; its array equivalent likewise causes each element of the array to be expanded to a separate word.+<WRAP info> 
 +**NOTE:**  **<nowiki>"$@"</nowiki>** causes each positional parameter to be expanded to a separate word; its array equivalent likewise causes each element of the array to be expanded to a separate word.
  
 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 173: 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.
 +
 +</WRAP>
 +
 +----
 +
 +===== 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 178: Line 185:
 <code bash> <code bash>
 getent passwd sshd getent passwd sshd
 +</code>
 +
 +returns:
 +
 +<code bash>
 sshd:x:100:65534::/var/run/sshd:/usr/sbin/nologin sshd:x:100:65534::/var/run/sshd:/usr/sbin/nologin
 +</code>
  
-IFS=:; args $(getent passwd sshd)+---- 
 + 
 +Set IFS 
 + 
 +<code bash> 
 +IFS=:; test.sh $(getent passwd sshd) 
 +</code> 
 + 
 +returns: 
 + 
 +<code bash>
 7 args: <sshd> <x> <100> <65534> <> </var/run/sshd> </usr/sbin/nologin> 7 args: <sshd> <x> <100> <65534> <> </var/run/sshd> </usr/sbin/nologin>
 +</code>
  
 +Unset IFS
 +
 +<code bash>
 unset IFS unset IFS
 </code> </code>
  
-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:**  There was another empty word generated in one of our previous examples, where IFS was set to **/**.
  
-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.+  * non-whitespace IFS characters are not ignored at the beginning and end of expansions, the way whitespace IFS characters are.
  
-Finallywe note that pathname expansion happens after word splitting, and can produce some very shocking results.+Whitespace IFS characters get consolidated. 
 + 
 +  * Multiple spaces in a rowfor 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. 
 + 
 +</WRAP> 
 + 
 +Pathname expansion happens after word splitting, and can produce some very shocking results:
  
 <code bash> <code bash>
Line 196: Line 231:
 qmaild:*:994:998::/var/qmail:/sbin/nologin qmaild:*:994:998::/var/qmail:/sbin/nologin
  
-IFS=:; args $(getent passwd qmaild)+IFS=:; test $(getent passwd qmaild)
 737 args: <qmaild> <00INDEX.lsof> <03> <037_ftpd.patch> ... 737 args: <qmaild> <00INDEX.lsof> <03> <037_ftpd.patch> ...
  
Line 202: Line 237:
 </code> </code>
  
-The * word, produced by the shell's word splitting, was then expanded as a glob, resulting in several hundred new and exciting words.  This can be disastrous if it happens unexpectedly.  As with most of the dangerous features of the shell, it is retained because "it's always worked that way" In fact, it can be used for good, if you're very careful:+The **<nowiki>*</nowiki>** word, produced by the shell's word splitting, was then expanded as a glob, resulting in several hundred new and exciting words. 
 + 
 +  This can be disastrous if it happens unexpectedly. 
 +  As with most of the dangerous features of the shell, it is retained because "it's always worked that way". 
 +  In fact, it can be used for good, if you're very careful:
  
 <code bash> <code bash>
 files='*.mp3 *.ogg' files='*.mp3 *.ogg'
-args $files+test.sh $files
 2 args: <Yello - Oh Yeah.mp3> <*.ogg> 2 args: <Yello - Oh Yeah.mp3> <*.ogg>
 </code> </code>
  
-Pathname expansion can be disabled with set -f or set -o noglob; though this can lead to surprising and confusing code.+<WRAP info> 
 +**NOTE:**  Pathname expansion can be disabled with set -f or set -o noglob; though this can lead to surprising and confusing code. 
 +</WRAP> 
  
 ---- ----
bash/wordsplitting.1610206969.txt.gz · Last modified: 2021/01/09 15:42 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki