hpr2045 :: Some other Bash tips
Yet more information about types of expansion in Bash
Hosted by Dave Morriss on Friday, 2016-06-03 is flagged as Explicit and is released under a CC-BY-SA license.
Bash, expansion, process substitution, word splitting.
(Be the first).
The show is available on the Internet Archive at: https://archive.org/details/hpr2045
Listen in ogg,
spx,
or mp3 format. Play now:
Duration: 00:55:53
Bash Scripting.
This is an open series in which Hacker Public Radio Listeners can share their Bash scripting knowledge and experience with the community. General programming topics and Bash commands are explored along with some tutorials for the complete novice.
Some other Bash tips
Expansion
As we saw in the last episode 1951 (and others in this sub-series) there are eight types of expansion applied to the command line in the following order:
- Brace expansion (we looked at this subject in episode 1884)
- Tilde expansion (seen in episode 1903)
- Parameter and variable expansion (this was covered in episode 1648)
- Command substitution (seen in episode 1903)
- Arithmetic expansion (seen in episode 1951)
- Process substitution
- Word splitting
- Pathname expansion
We will look at process substitution and word splitting in this episode but since there is a lot to cover in these subjects, we'll save pathname expansion for the next episode.
Links
- HPR episode 1648 "Bash parameter manipulation"
- HPR episode 1843 "Some Bash tips":
- HPR episode 1884 "Some more Bash tips":
- HPR episode 1903 "Some further Bash tips":
- HPR episode 1951 "Some additional Bash tips":
- "Introduction to sed" series on HPR:
- Wikipedia article on the "Named pipe": https://en.wikipedia.org/wiki/Named_pipe
- Wikipedia article on the "IFS" variable: https://en.wikipedia.org/wiki/Internal_field_separator
- Advanced Bash-Scripting Guide: Section 9.1 Bash Internal Variables (including
IFS
): https://www.tldp.org/LDP/abs/html/internalvariables.html