Jump to content

glob (programming)

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 2a00:5a80:ffff:1:8c9c:13e4:7a05:762c (talk) at 10:24, 22 March 2013 (→‎Implementations). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

In computer programming, in particular in a Unix-like environment, the term globbing is sometimes used to refer to pattern matching based on wildcard characters.[citation needed] The noun "glob" is used to refer to a particular pattern, e.g. "use the glob *.log to match all those log files".[citation needed] Its notation is simpler than regular expressions, and without their expressive power.

Origin

The command interpreters of the early versions of Unix (1st through 6th Editions, 1969–75) did not expand wildcard characters in file path arguments to a command; a separate program, /etc/glob,[1] 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.

Technical

Unix shell globbing operates by parameter expansion – the glob pattern (e.g., *.log) is expanded and replaced by the list of all matches. For example, if a directory contains two files, a.log and b.log then the command cat *.log will be expanded by the shell to cat a.log b.log which is then evaluated (in this case, displaying the files). The order of arguments to a command often matters – for example, cat a.log b.log prints first a.log and then b.log, while cat b.log a.log prints first b.log and then a.log. Thus, while "filenames that match the pattern" is an (unordered) set, the actual expanded list of matching files is an ordered list, a sequence, and thus an order must be chosen, conventionally alphabetical order, however defined by the shell.[3]

Implementations

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

Windows shells such as cmd.exe and Windows PowerShell do not glob, but instead rely on the called program or Cmdlet to perform globbing. [5]

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

  • Go has a Glob function in the filepath module[6]
  • The Perl programming language has both a glob function (as discussed in Larry Wall's book Programming Perl) and a Glob extension which mimics the BSD glob routine.[7] Perl's angle brackets can be used to glob as well: <*.log>.
  • PHP has a glob function.[8]
  • Python has a glob module in the standard library which performs wildcard pattern matching on filenames.[9] Guido van Rossum, author of the Python programming language wrote and contributed a glob() routine to BSD Unix in 1986.[10] There were previous implementations of glob, e.g., in the ex and ftp programs in previous releases of BSD.
  • Ruby has a glob method for the Dir class which performs wildcard pattern matching on filenames.[11] Several libraries such as Rant and Rake provide a FileList class which has a glob method or use the method FileList.[] identically.
  • Tcl contains both true regular expression matching facilities and a more limited kind of pattern matching often described as globbing.[12]

Syntax

Although there is no definite syntax for globs, common features include:

Task Example Unix shells COMMAND.COM cmd.exe Windows PowerShell SQL (LIKE operator) SAP
Match one or zero unknown characters ?at matches at, Cat, cat, Bat or bat ? ? ?
Match exactly one unknown character ?at matches Cat, cat, Bat or bat, but not at ? _ +
Match any number of unknown characters Law* matches Law, Laws, or Lawyer * * * * % *
Match a character as part of a group of characters [CB]at matches Cat or Bat but not cat or bat [characters] [characters]
Escape character Law\* will only match Law* \ ^ `

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 a larger set of regular languages over any given finite alphabet.[citation needed]

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.

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 6, IEEE Std 1003.1, 2004 Edition, 2.13.3 'Patterns Used for Filename Expansion'".
  4. ^ The "Advanced Bash-Scripting Guide, Chapter 19.2: Globbing" (Mendel Cooper, 2003) has a concise set of examples of filename globbing patterns.
  5. ^ http://msdn.microsoft.com/en-us/library/aa717088(v=vs.85).aspx
  6. ^ "Package filepath - The Go Programming Language". Golang.org. Retrieved 2011-05-11.
  7. ^ Contact details. "File::Glob - Perl extension for BSD glob routine". perldoc.perl.org. Retrieved 2011-05-11.
  8. ^ "glob - Manual". PHP. 2011-05-06. Retrieved 2011-05-11.
  9. ^ "10.7. glob — Unix style pathname pattern expansion — Python v2.7.1 documentation". Docs.python.org. Retrieved 2011-05-11.
  10. ^ "'Globbing' library routine". Archived from the original on 2007-12-19. Retrieved 2011-05-11.
  11. ^ "Class: Dir". Ruby-doc.org. Retrieved 2011-05-11.
  12. ^ "TCL glob manual page". Retrieved 16 November 2011.