hpr2293 :: More supplementary Bash tips
Finishing off the subject of expansion in Bash (part 2)
Hosted by Dave Morriss on Wednesday, 2017-05-17 is flagged as Explicit and is released under a CC-BY-SA license.
Bash, expansion, filename expansion, extglob, extended pattern matching.
8.
The show is available on the Internet Archive at: https://archive.org/details/hpr2293
Listen in ogg,
spx,
or mp3 format. Play now:
Duration: 00:38:25
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.
More supplementary Bash tips
Pathname expansion; part 2 of 2
Expansion
As we saw in the last episode 2278 (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 (seen in episode 2045)
- Word splitting (seen in episode 2045)
- Pathname expansion (the previous episode 2278 and this one)
This is the last topic in the (sub-) series about expansion in Bash.
In this episode we will look at extended pattern matching as also defined in the “Manual Page Extracts” section at the end of the long notes.
Long Show Notes
I have written out a moderately long set of notes about this subject and these are available here.
Links
- Previous shows in this series
- Other HPR series referenced:
- “Learning sed” series on HPR
- “Learning Awk” series on HPR
- Wikipedia article on glob patterns
- Advanced Bash Scripting Guide: “Globbing”
- Article on Greg’s Wiki entitled “Globs”
- Questions about Bash extended globbing on Stack Exchange:
- Question 1: How to list just one file with ‘
ls
’ - Question 2: What is the difference between…
- Question 3: Patterns in case statements
- Question 1: How to list just one file with ‘