glob (programming)

In computer programming, in particular in a Unix-like environment, glob patterns specify sets of filenames with wildcard characters. For example, the Unix command mv *.txt textfiles/ moves (mv) all files with names ending in .txt from the current directory to the directory textfiles. Here, * is a wildcard standing for "any string of characters" and *.txt is a glob pattern. The other common wildcard is the question mark (?), which stands for one character.

Origin

The command interpreters of the early versions of Unix (1st through 6th Editions, 1969–75) relied on a separate program to expand wildcard characters in unquoted arguments to a command: /etc/glob.[1] That program performed the expansion and supplied the expanded list of file paths to the command for execution. Its name is an abbreviation for "global command".[2] Later, this functionality was provided as a library function, glob(), used by programs such as the shell.

Syntax

The most common wildcards are *, ?, and […].

Wildcard Description Example Matches Does not match
* matches any number of any characters including none Law* Law, Laws, or Lawyer
*Law* Law, GrokLaw, or Lawyer.
? matches any single character ?at Cat, cat, Bat or bat at
[abc] matches one character given in the bracket [CB]at Cat or Bat cat or bat
[a-z] matches one character from the range given in the bracket Letter[0-9] Letter0, Letter1, Letter2 up to Letter9 Letters, Letter or Letter10

In all cases the path separator character (/ on unix or \ on windows) will never be matched.

Unix

On Linux and POSIX systems *, ? is defined as above while […] has two additional meanings:[3][4]

Wildcard Description Example Matches Does not match
[!abc] matches one character that is not given in the bracket [!C]at Bat, bat, or cat Cat
[!a-z] matches one character that is not from the range given in the bracket Letter[!3-5] Letter1, Letter2, Letter6 up to Letter9 and Letterx etc. Letter3, Letter4, Letter5 or Letterxx

Some shells (such as the C shell and Bash) support additional syntax known as alternation or brace expansion.

The Bash shell also supports Extended Globbing which allows other pattern matching operators to be used to match multiple occurrences of a pattern enclosed in parentheses. It can be enabled by setting the extglob shell option.[5]

Windows PowerShell

Windows PowerShell has all the common syntax defined as stated above without any additions.[6]

DOS COMMAND.COM and Windows cmd.exe

COMMAND.COM and cmd.exe have most of the common syntax with some limitations: There is no […] and for COMMAND.COM the * may only appear at the end of the pattern, not at the beginning.

SQL

The SQL LIKE operator has an equivalent of ? and *. There is no equivalent of […].

Common wildcard SQL wildcard
? _
* %

Standard SQL uses a glob-like syntax for simple string matching in its LIKE operator. The percent sign (%) matches zero or more characters, and the underscore matches exactly one character. The term "glob" is not generally used in the SQL community, however. Many implementations of SQL have extended the LIKE operator to allow a richer pattern-matching language incorporating elements of regular expressions.

Some proprietary extensions such as Transact-SQL provide the […] functionality, e.g., [characters] and [^characters].[7]

Compared to regular expressions

Globs do not include syntax for the Kleene star which allows multiple repetitions of the preceding part of the expression; thus they are not considered regular expressions, which can describe the full set of regular languages over any given finite alphabet.

Common wildcard Equivalent regular expression
? .
* .*

Globs attempt to match the entire string (for example, S*.DOC matches S.DOC and SA.DOC, but not POST.DOC or SURREY.DOCKS), whereas regular expressions match a substring unless the expression is enclosed with ^ and $ (so the equivalent of S*.DOC is ^S.*\.DOC$[8]).

Implementations

Unix shells such as Bash, tcsh, and zsh provide globbing on filenames at the command line and in shell scripts.[9]

The Windows command interpreter cmd.exe relies on a runtime function in applications to perform globbing.[10][11] Windows PowerShell Cmdlets support globbing.[12]

The term "glob" is also used to refer more generally to limited pattern-matching facilities of this kind, in other contexts:

See also

References

  1. "First Edition Unix manual 'Miscellaneous' section (PDF)" (PDF). Retrieved 2011-05-11.
  2. 1st Edition UNIX, code.google.com, src/cmd/glob.c
  3. "The Open Group Base Specifications Issue 7 IEEE Std 1003.1, 2013 Edition, 2.13. Pattern Matching Notation".
  4. "Linux Programmer's Manual, GLOB(7)".
  5. "Pattern Matching". Bash Reference Manual.
  6. "Supporting Wildcard Characters in Cmdlet Parameters".
  7. "LIKE (Transact-SQL)".
  8. Strictly, . does not match a newline. To match newlines, the equivalents are [\s\S] and [\s\S]* or similar complementary pairs, respectively.
  9. The "Advanced Bash-Scripting Guide, Chapter 19.2: Globbing" (Mendel Cooper, 2003) has a concise set of examples of filename globbing patterns.
  10. "Wildcard Expansion". Microsoft Developer Network. 2013.
  11. "Expanding Wildcard Arguments". Microsoft Developer Network. 2013.
  12. "Supporting Wildcard Characters in Cmdlet Parameters". Microsoft Developer Network. 2013.
  13. "std.path - D Programming Language - Digital Mars". dlang.org. Retrieved 2014-09-08.
  14. "isaacs/minimatch". GitHub. Retrieved 2016-08-10.
  15. "minimatch". npm. Retrieved 2016-08-10.
  16. "Package filepath - The Go Programming Language". Golang.org. Retrieved 2011-05-11.
  17. "File Operations". Oracle. Retrieved 2013-12-16.
  18. "Glob-0.7.4: Globbing library". Retrieved 2014-05-07.
  19. Contact details. "File::Glob - Perl extension for BSD glob routine". perldoc.perl.org. Retrieved 2011-05-11.
  20. "glob - Manual". PHP. 2011-05-06. Retrieved 2011-05-11.
  21. "10.7. glob — Unix style pathname pattern expansion — Python v2.7.1 documentation". Docs.python.org. Retrieved 2011-05-11.
  22. "10.8 fnmatch Unix filename pattern matching -- Python v2.7.7 documentation". Docs.python.org. Retrieved 2014-06-28.
  23. "'Globbing' library routine". Archived from the original on 2007-12-19. Retrieved 2011-05-11.
  24. "Class: Dir". Ruby-doc.org. Retrieved 2011-05-11.
  25. "TCL glob manual page". Retrieved 16 November 2011.
This article is issued from Wikipedia - version of the 11/5/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.