10759
Comment:
|
12800
repaired links
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
<<TableOfContents>> = Globs = |
|
Line 14: | Line 18: |
{{{ | {{{#!highlight bash |
Line 22: | Line 26: |
{{{ | {{{#!highlight bash |
Line 38: | Line 42: |
{{{ | {{{#!highlight bash |
Line 50: | Line 54: |
{{{ | {{{#!highlight bash |
Line 56: | Line 60: |
{{{ | {{{#!highlight bash |
Line 71: | Line 75: |
||`[a-d]` ||The same as above, if your [[locale]] is C or POSIX. Otherwise, implementation-defined.|| | ||`[a-d]` ||The same as above, if ''globasciiranges'' is set or your [[locale]] is C or POSIX. Otherwise, implementation-defined.|| |
Line 78: | Line 82: |
''Implementation-defined'' means it may work as you expect on one machine, but give completely different results on another machine. Do not use the `m-n` syntax unless you have explicitly set your locale to C first, or you may get unexpected results. The [[http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap09.html#tag_09_03_05|POSIX character class expressions]] should be preferred whenever possible. | === globasciiranges (since bash 4.3-alpha) === Interprets [a-d] as [abcd]. To match a literal -, include it as first or last character. === For older versions === Note that ''Implementation-defined'' means it may work as you expect on one machine, but give completely different results on another machine. Do not use the `m-n` syntax unless you have explicitly set your locale to C first, or you may get unexpected results. The [[http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap09.html#tag_09_03_05|POSIX character class expressions]] should be preferred whenever possible. |
Line 86: | Line 96: |
{{{ | {{{#!highlight bash |
Line 102: | Line 112: |
{{{ | {{{#!highlight bash |
Line 109: | Line 119: |
{{{ | {{{#!highlight bash |
Line 116: | Line 126: |
{{{ | {{{#!highlight bash |
Line 123: | Line 133: |
{{{ | {{{#!highlight bash |
Line 127: | Line 137: |
Because the `extglob` option changes the way certain characters are parsed, it is necessary to have a newline (not just a semicolon) between the `shopt` command and any subsequent commands that use extended globs. Likewise, you cannot put `shopt -s extglob` inside a statement block that uses extended globs, because the block as a whole must be parsed when it's defined; the `shopt` command won't take effect until the block is ''evaluated'', at which point it's too late. In fact as bash parses the entire statement block before evaluating any of it, you need to set extglob outside of the outermost block. | '''Because `extglob` and other glob options change the way certain characters are parsed, it is necessary to have a newline (not just a semicolon) between the `shopt` command and any subsequent commands to use the new globbing.''' As an example, you cannot put `shopt -s extglob` inside a [[BashGuide/CompoundCommands#Command\ Grouping|group command]] that uses extended globs, because the entire block is parsed before the `shopt` is ''evaluated''. Note that the typical [[BashGuide/CompoundCommands#Functions|function]] body ''is'' a ''group command''. An unpleasant workaround could be to use a ''subshell command list'' as the function body. |
Line 131: | Line 143: |
{{{#!highlight text numbers=disable | {{{#!highlight bash |
Line 138: | Line 150: |
{{{ SourcedFile.sh if ! shopt extglob; then ClearExtGlob_SourcedFile_sh=1 shopt -s extglob fi # The basic Concept behind the following options is to delay parsing of the # extglob until evaluation. |
{{{#!highlight bash file: shopt -q extglob || shopt -s extglob # enable extglob if not already set # The basic concept behind the following is to delay parsing of the globs until evaluation. # This matters at group commands, such as functions in { } blocks |
Line 154: | Line 165: |
if [ "${ClearExtGlob_SourcedFile_sh}" == "1" ]; then unset ClearExtGlob_SourcedFile_sh shopt -u extglob fi test.sh |
shopt -q extglob && shopt -u extglob # disable extglob if set myscript: |
Line 161: | Line 170: |
if true; then source ./SourcedFile.sh fi |
# extglob was incidentally disabled . file |
Line 170: | Line 178: |
{{{ | {{{#!highlight bash |
Line 177: | Line 185: |
{{{ | {{{#!highlight bash |
Line 189: | Line 197: |
=== dotglob === By convention, a filename beginning with a dot is "hidden", and not shown by `ls`. Globbing uses the same convention -- filenames beginning with a dot are not matched by a glob, unless the glob also begins with a dot. Bash has a '''dotglob''' option that lets globs match "dot files": {{{#!highlight bash shopt -s dotglob nullglob files=(*) echo "There are ${#files[@]} files here, including dot files and subdirs" }}} It should be noted that when `dotglob` is enabled, `*` will match files like `.bashrc` but ''not'' the `.` or `..` directories. This is orthogonal to the problem of matching "just the dot files" -- a glob of `.*` ''will'' match `.` and `..`, typically causing problems. === globstar (since bash 4.0-alpha) === To recurse … {{{#!highlight bash shopt -s globstar files=(*) echo "There are ${#files[@]} files here, including dot files and subdirs" }}} |
|
Line 193: | Line 223: |
{{{ | {{{#!highlight bash |
Line 201: | Line 231: |
=== dotglob === By convention, a filename beginning with a dot is "hidden", and not shown by `ls`. Globbing uses the same convention -- filenames beginning with a dot are not matched by a glob, unless the glob also begins with a dot. Bash has a '''dotglob''' option that lets globs match "dot files": {{{ shopt -s dotglob nullglob files=(*) echo "There are ${#files[@]} files here, including dot files and subdirs" }}} It should be noted that when `dotglob` is enabled, `*` will match files like `.bashrc` but ''not'' the `.` or `..` directories. This is orthogonal to the problem of matching "just the dot files" -- a glob of `.*` ''will'' match `.` and `..`, typically causing problems. See next section. |
|
Line 217: | Line 235: |
{{{ | {{{#!highlight bash |
Line 227: | Line 245: |
{{{ | {{{#!highlight bash |
Line 233: | Line 251: |
=== nocasematch === Globs inside [[ and case commands are matched case-insensitive: {{{#!highlight bash foo() { local f r=0 nc=0 shopt -q nocasematch && nc=1 || shopt -s nocasematch for f; do [[ $f = *.@(txt|jpg) ]] || continue cmd -on "$f" || r=1 done ((nc)) || shopt -u nocasematch return $r } }}} This is conventionally done this way: {{{#!highlight bash case $f in *.[Tt][Xx][Tt]|*.[Jj][Pp][Gg]) : ;; *) continue esac }}} and in earlier versions of bash we'd use a similar glob: {{{#!highlight bash [[ $f = *.@([Tt][Xx][Tt]|[Jj][Pp][Gg]) ]] || continue }}} or with no extglob: {{{#!highlight bash [[ $f = *.[Tt][Xx][Tt] ]] || [[ $f = *.[Jj][Pp][Gg] ]] || continue }}} Here, one might keep the tests separate for maintenance; they can be easily reused and dropped, without having to concern oneself with where they fit in relation to an internal ||. Note also: {{{#!highlight bash [[ $f = *.@([Tt][Xx][Tt]|[Jj][Pp]?([Ee])[Gg]) ]] }}} Variants left as an exercise. === nocaseglob (since bash 2.02-alpha1) === This option makes ''pathname expansion'' case-insensitive. In contrast, [[#nocasematch|nocasematch]] operates on matches in ''[[BashGuide/TestsAndConditionals#Conditional_Blocks|[[]]'' and ''[[BashGuide/TestsAndConditionals#Choices|case]]'' commands. |
Contents
Globs
"Glob" is the common name for a set of Bash features that match or expand specific types of patterns. Some synonyms for globbing (depending on the context in which it appears) are pattern matching, pattern expansion, filename expansion, and so on. A glob may look like *.txt and, when used to match filenames, is sometimes called a "wildcard".
Traditional shell globs use a very simple syntax, which is less expressive than a RegularExpression. Most characters in a glob are treated literally, but a * matches 0 or more characters, a ? matches precisely one character, and [...] matches any single character in a specified set (see Ranges below). All globs are implicitly anchored at both start and end. For example:
* |
Matches any string, of any length |
foo* |
Matches any string beginning with foo |
*x* |
Matches any string containing an x (beginning, middle or end) |
*.tar.gz |
Matches any string ending with .tar.gz |
*.[ch] |
Matches any string ending with .c or .h |
foo? |
Matches foot or foo$ but not fools |
Bash expands globs which appear unquoted in commands, by matching filenames relative to the current directory. The expansion of the glob results in 1 or more words (0 or more, if certain options are set), and those words (filenames) are used in the command. For example:
Even if a file contains internal whitespace, the expansion of a glob that matches that file will still preserve each filename as a single word. For example,
In the second example above, the output of ls is filtered, and then the result of the whole pipeline is divided into words, to serve as iterative values for the loop. This word-splitting will occur at internal whitespace within each filename, which makes it useless in the general case. The first example has no such problem, because the filenames produced by the glob do not undergo any further word-splitting. For more such examples, see BashPitfalls.
Globs are also used to match patterns in a few places in Bash. The most traditional is in the case command:
Patterns (which are separated by | characters) are matched against the first word after the case itself. The first pattern which matches, "wins", causing the corresponding commands to be executed.
Bash also allows globs to appear on the right-hand side of a comparison inside a [[ command:
1 if [[ $output = *[Ee]rror* ]]; then ...
Finally, globs are used during parameter expansion to indicate patterns which may be stripped out, or replaced, during a substitution. Simple examples (there are many more on the previously referenced page):
(Reference: Arrays Quotes printf.)
Ranges
Globs can specify a range or class of characters, using square brackets. This gives you the ability to match against a set of characters. For example:
[abcd] |
Matches a or b or c or d |
[a-d] |
The same as above, if globasciiranges is set or your locale is C or POSIX. Otherwise, implementation-defined. |
[!aeiouAEIOU] |
Matches any character except a, e, i, o, u and their uppercase counterparts |
[[:alnum:]] |
Matches any alphanumeric character in the current locale (letter or number) |
[[:space:]] |
Matches any whitespace character |
[![:space:]] |
Matches any character that is not whitespace |
[[:digit:]_.] |
Matches any digit, or _ or . |
globasciiranges (since bash 4.3-alpha)
Interprets [a-d] as [abcd]. To match a literal -, include it as first or last character.
For older versions
Note that Implementation-defined means it may work as you expect on one machine, but give completely different results on another machine. Do not use the m-n syntax unless you have explicitly set your locale to C first, or you may get unexpected results. The POSIX character class expressions should be preferred whenever possible.
Options which change globbing behavior
extglob
In addition to the traditional globs (supported by all Bourne-family shells) that we've seen so far, Bash (and Korn Shell) offers extended globs, which have the expressive power of regular expressions. Korn shell enables these by default; in Bash, you must run the command
1 shopt -s extglob
in your shell (or at the start of your script -- see note on parsing below) to use them. The pattern matching reference describes the syntax, which is reproduced here:
- ?(pattern-list)
- Matches zero or one occurrence of the given patterns.
- *(pattern-list)
- Matches zero or more occurrences of the given patterns.
- +(pattern-list)
- Matches one or more occurrences of the given patterns.
- @(pattern-list)
- Matches one of the given patterns.
- !(pattern-list)
- Matches anything except one of the given patterns.
Patterns in a list are separated by | characters.
Extended globs allow you to solve a number of problems which otherwise require a rather surprising amount of ugly hacking; for example,
To use an extglob in a parameter expansion (this can also be done in one BASH statement with read):
Extended glob patterns can be nested, too.
1 [[ $fruit = @(ba*(na)|a+(p)le) ]] && echo 'Nice fruit'
Because extglob and other glob options change the way certain characters are parsed, it is necessary to have a newline (not just a semicolon) between the shopt command and any subsequent commands to use the new globbing. As an example, you cannot put shopt -s extglob inside a group command that uses extended globs, because the entire block is parsed before the shopt is evaluated. Note that the typical function body is a group command. An unpleasant workaround could be to use a subshell command list as the function body.
Therefore, if you use this option in a script, it's best to put it right under the shebang line, or as close as you can get it while still making your boss happy.
If your code isn't a script, but is instead being sourced, and must set extglob itself:
1 file:
2 shopt -q extglob || shopt -s extglob
3 # enable extglob if not already set
4
5 # The basic concept behind the following is to delay parsing of the globs until evaluation.
6 # This matters at group commands, such as functions in { } blocks
7
8 declare -a s='( !(x) )'
9 echo "${s[@]}"
10
11 echo "${InvalidVar:-!(x)}"
12
13 eval 'echo !(x)' # using eval if no other option.
14
15 shopt -q extglob && shopt -u extglob
16 # disable extglob if set
17
18 myscript:
19 shopt -u extglob
20 # extglob was incidentally disabled
21 . file
nullglob
If a glob fails to match any filenames, the shell normally leaves it alone. This means the raw glob will be passed on to the command, as in:
This allows the command to see the glob you used, and to use it in an error message. If the Bash option nullglob is set, however, a glob which matches no files will be removed entirely. This is useful in scripts, but somewhat confusing at the command line, since it "breaks" the expectations of many of the standard tools (see failglob below for a better alternative):
dotglob
By convention, a filename beginning with a dot is "hidden", and not shown by ls. Globbing uses the same convention -- filenames beginning with a dot are not matched by a glob, unless the glob also begins with a dot. Bash has a dotglob option that lets globs match "dot files":
It should be noted that when dotglob is enabled, * will match files like .bashrc but not the . or .. directories. This is orthogonal to the problem of matching "just the dot files" -- a glob of .* will match . and .., typically causing problems.
globstar (since bash 4.0-alpha)
To recurse …
failglob
If a pattern fails to match, bash reports an expansion error. This can be useful at the commandline:
GLOBIGNORE
The Bash variable (not shopt) GLOBIGNORE allows you to specify patterns a glob should not match. This lets you work around the infamous "I want to match all of my dot files, but not . or .." problem:
Unset GLOBIGNORE
nocasematch
Globs inside [[ and case commands are matched case-insensitive:
This is conventionally done this way:
and in earlier versions of bash we'd use a similar glob:
1 [[ $f = *.@([Tt][Xx][Tt]|[Jj][Pp][Gg]) ]] || continue
or with no extglob:
1 [[ $f = *.[Tt][Xx][Tt] ]] || [[ $f = *.[Jj][Pp][Gg] ]] || continue
Here, one might keep the tests separate for maintenance; they can be easily reused and dropped,
without having to concern oneself with where they fit in relation to an internal ||.
Note also:
1 [[ $f = *.@([Tt][Xx][Tt]|[Jj][Pp]?([Ee])[Gg]) ]]
Variants left as an exercise.
nocaseglob (since bash 2.02-alpha1)
This option makes pathname expansion case-insensitive. In contrast, nocasematch operates on matches in [[ and case commands.