Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

grep

From Wikipedia, the free encyclopedia
Unix command line utility for text search
grep
Example of grep command
Original author(s)Ken Thompson[1][2]
Developer(s)AT&T Bell Laboratories
Initial releaseNovember 1973; 51 years ago (1973-11)[1]
Written inC
Operating systemUnix,Unix-like,Plan 9,Inferno,OS-9,MSX-DOS,IBM i
TypeCommand

grep is acommand-line utility for searching plaintext datasets for lines that match aregular expression. Its name comes from theed commandg/re/p (global regular expression search and print), which has the same effect.[3][4] grep was originally developed for theUnix operating system, but later became available for allUnix-like systems and some others such asOS-9.[5]

History

[edit]

Before it was named, grep was a private utility written byKen Thompson to search files for certain patterns.Doug McIlroy, unaware of its existence, asked Thompson to write such a program. Responding that he would think about such a utility overnight, Thompson actually corrected bugs and made improvements for about an hour on his own program called "s" (short for "search"). The next day he presented the program to McIlroy, who said it was exactly what he wanted. Thompson's account may explain the belief that grep was written overnight.[6]

Thompson wrote the first version inPDP-11assembly language to helpLee E. McMahon analyze the text ofThe Federalist Papers to determine authorship of the individual papers.[7] Theed text editor (also authored by Thompson) hadregular expression support but could not be used to search through such a large amount of text, as it loaded the entire file into memory to enablerandom access editing, so Thompson excerpted that regexp code into a standalone tool which would instead process arbitrarily long files sequentially without buffering too much into memory.[1] He chose the name because in ed, the commandg/re/p would print all lines featuring a specified pattern match.[8][9] grep was first included inVersion 4 Unix. Stating that it is "generally cited asthe prototypical software tool", McIlroy credited grep with "irrevocably ingraining" Thompson'stools philosophy in Unix.[10]

Implementations

[edit]

A variety of grep implementations are available in many operating systems and software development environments.[11] Early variants included egrep and fgrep, introduced inVersion 7 Unix.[10] The egrep variant supports anextended regular expression syntax added byAlfred Aho afterKen Thompson's original regular expression implementation.[12] The "fgrep" variant searches for any of a list offixed strings using theAho–Corasick string matching algorithm.[13] Binaries of these variants exist in modern systems, usually linking to grep or calling grep as a shell script with the appropriate flag added, e.g.exec grep -E "$@". egrep and fgrep, while commonly deployed on POSIX systems, to the point the POSIX specification mentions their widespread existence, are actually not part of POSIX.[14]

Other commands contain the word "grep" to indicate they are search tools, typically ones that rely on regular expression matches. Thepgrep utility, for instance, displays the processes whose names match a given regular expression.[15]

In thePerl programming language,grep is a built-in function that finds elements in a list that satisfy a certain property.[16] Thishigher-order function is typically namedfilter orwhere in other languages.

The pcregrep command is an implementation of grep that usesPerl regular expression syntax.[17] Similar functionality can be invoked in the GNU version of grep with the-P flag.[18]

Ports of grep (withinCygwin andGnuWin32, for example) also run underMicrosoft Windows. Some versions of Windows feature the similar qgrep orfindstr command.[19]

A grep command is also part ofASCII'sMSX-DOS2 Tools forMSX-DOS version 2.[20]

The grep, egrep, and fgrep commands have also been ported to theIBM i operating system.[21]

The softwareAdobe InDesign has functions GREP (since CS3 version (2007)[22]), in thefind/change dialog box[23] "GREP" tab, and introduced with InDesign CS4[24] inparagraph styles[25] "GREP styles".

agrep

[edit]
Main article:agrep

agrep (approximate grep) is anopen-sourceapproximate string matching program, developed byUdi Manber and Sun Wu between 1988 and 1991,[26] for use with theUnix operating system. It was later ported toOS/2,DOS, andWindows.

agrep matches even when the text onlyapproximately fits the search pattern.[27]

This following invocation findsnetmasks in filemyfile, but also any other word that can be derived from it, given no more than two substitutions.

agrep -2 netmasks myfile

This example generates a list of matches with the closest, that is those with the fewest, substitutions listed first. The command flag-B means "best":

agrep -B netmasks myfile

Usage as a verb

[edit]

In December 2003, theOxford English Dictionary Online added "grep" as both a noun and a verb.[28]

A common verb usage is the phrase "You can't grep dead trees"—meaning one can more easily search through digital media, using tools such as grep, than one could with a hard copy (i.e. one made from "dead trees", which in this context is adysphemism for paper).[29]

See also

[edit]

References

[edit]
  1. ^abcKernighan, Brian (1984).The Unix Programming Environment. Prentice Hall. pp. 102.ISBN 0-13-937681-X.
  2. ^“grep was a private command of mine for quite a while before i made it public.” -Ken ThompsonArchived 2015-05-26 at theWayback Machine, By Benjamin Rualthanzauva, Published on Feb 5, 2014, Medium
  3. ^Hauben et al. 1997, Ch. 9
  4. ^Raymond, Eric."grep".Jargon File. Archived fromthe original on 2006-06-17. Retrieved2006-06-29.
  5. ^Paul S. Dayan (1992).The OS-9 Guru - 1 : The Facts. Galactic Industrial Limited.ISBN 0-9519228-0-7.
  6. ^VCF East 2019 -- Brian Kernighan interviews Ken Thompson (video). YouTube. 6 May 2019.Archived from the original on 2021-12-11. (35 mins)
  7. ^Computerphile,Where GREP Came From, interview withBrian Kernighan
  8. ^"ed regexes".perl.plover.com. Archived fromthe original on 20 October 2017. Retrieved24 April 2018.
  9. ^"How Grep Got its Name".robots.thoughtbot.com. Archived fromthe original on 9 August 2017. Retrieved24 April 2018.
  10. ^abMcIlroy, M. D. (1987).A Research Unix reader: annotated excerpts from the Programmer's Manual, 1971–1986(PDF) (Technical report). CSTR. Bell Labs. 139.Archived(PDF) from the original on 2017-11-11.
  11. ^Abou-Assaleh, Tony; Wei Ai (March 2004).Survey of Global Regular Expression Print (GREP) Tools (Technical report). Dalhousie University.
  12. ^Hume, Andrew (1988). "A Tale of Two Greps".Software: Practice and Experience.18 (11): 1063.doi:10.1002/spe.4380181105.S2CID 6395770.
  13. ^Meurant, Gerard (12 Sep 1990).Algorithms and Complexity. Elsevier Science. p. 278.ISBN 9780080933917.Archived from the original on 4 March 2016. Retrieved12 December 2015.
  14. ^"grep".www.pubs.opengroup.org. The Open Group.Archived from the original on 28 November 2015. Retrieved12 December 2015.
  15. ^"pgrep(1)".www.linux.die.net.Archived from the original on 22 December 2015. Retrieved12 December 2015.
  16. ^"grep".www.perldoc.perl.org.Archived from the original on 7 December 2015. Retrieved12 December 2015.
  17. ^"pcregrep man page".www.pcre.org. University of Cambridge.Archived from the original on 23 December 2015. Retrieved12 December 2015.
  18. ^"grep(1)".www.linux.die.net.Archived from the original on 10 December 2015. Retrieved12 December 2015.
  19. ^Spalding, George (2000).Windows 2000 administration. Network professional's library. Osborne/McGraw-Hill. pp. 634.ISBN 978-0-07-882582-8. Retrieved2010-12-10.QGREP.EXE[:] A similar tool to grep in UNIX, this tool can be used to search for a text string
  20. ^"MSX-DOS2 Tools User's Manual by ASCII Corporation". April 1993.
  21. ^IBM."IBM System i Version 7.2 Programming Qshell"(PDF).IBM. Retrieved2020-09-05.
  22. ^"Review: Adobe InDesign CS3 - CreativePro.com".creativepro.com. 20 April 2007.Archived from the original on 5 January 2018. Retrieved24 April 2018.
  23. ^"InDesign Help: find/change".Archived from the original on 2016-08-28. Retrieved2016-08-12.
  24. ^"InDesign: GREP Styles (1) Setting text between parentheses in Italic".Archived from the original on 2017-09-24. Retrieved2018-01-05.
  25. ^"InDesign Help: GREP styles".Archived from the original on 2016-08-28. Retrieved2016-08-12.
  26. ^Wu, Sun; Manber, Udi (20–24 January 1992).Agrep -- a fast approximate pattern-matching tool. 1992 Winter USENIX Conference. San Francisco, California.CiteSeerX 10.1.1.89.5424.
  27. ^S. Lee Henry (June 1998). "Proper Searching".Sun Expert. pp. 35–26.
  28. ^"New words list December 2003".Oxford English Dictionary. Retrieved2021-12-06.
  29. ^Jargon File, article "Documentation"
Notes
  • Alain Magloire (August 2000).Grep: Searching for a Pattern. Iuniverse Inc.ISBN 0-595-10039-2.
  • Hume, AndrewGrep wars: The strategic search initiative. In Peter Collinson, editor,Proceedings of the EUUG Spring 88 Conference, pages 237–245, Buntingford, UK, 1988. European UNIX User Group.
  • Michael Hauben; et al. (April 1997).Netizens: On the History and Impact of Usenet and the Internet (Perspectives). Wiley-IEEE Computer Society Press.ISBN 978-0-8186-7706-9.

External links

[edit]
The WikibookHow To Search has a page on the topic of:grep
File system
Processes
User environment
Text processing
Shell builtins
Searching
Documentation
Software development
Miscellaneous
File system
Processes
User environment
Text processing
Shell builtins
Networking
Searching
Software development
Miscellaneous
Authority control databases: NationalEdit this at Wikidata
Retrieved from "https://en.wikipedia.org/w/index.php?title=Grep&oldid=1275276776"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp