When.com Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. grep - Wikipedia

    en.wikipedia.org/wiki/Grep

    grep is a command-line utility for searching plaintext datasets for lines that match a regular expression. Its name comes from the ed command g/re/p (global regular expression search and print), which has the same effect.

  3. AWK - Wikipedia

    en.wikipedia.org/wiki/AWK

    Like sed and grep, it is a filter, [4] and it is a standard feature of most Unix-like operating systems. The AWK language is a data-driven scripting language consisting of a set of actions to be taken against streams of textual data – either run directly on files or used as part of a pipeline – for purposes of extracting or transforming ...

  4. Regular expression - Wikipedia

    en.wikipedia.org/wiki/Regular_expression

    He later added this capability to the Unix editor ed, which eventually led to the popular search tool grep's use of regular expressions ("grep" is a word derived from the command for regular expression searching in the ed editor: g/re/p meaning "Global search for Regular Expression and Print matching lines"). [15]

  5. Shell script - Wikipedia

    en.wikipedia.org/wiki/Shell_script

    On the other hand, the various shells plus tools like awk, sed, grep, and BASIC, Lisp, C and so forth contributed to the Perl programming language. [5] Other shells that may be available on a machine or for download and/or purchase include: Almquist shell (ash) Nushell (nu) PowerShell (msh) Z shell (zsh, a particularly common enhanced KornShell)

  6. xargs - Wikipedia

    en.wikipedia.org/wiki/Xargs

    xargs is also a good companion for commands that output long lists of files such as find, locate and grep, but only if one uses -0 (or equivalently --null), since xargs without -0 deals badly with file names containing ', " and space.

  7. The Unix Programming Environment - Wikipedia

    en.wikipedia.org/wiki/The_Unix_Programming...

    The reader is led through topics ranging from the use of filters, to how to use C for programming robust Unix applications, and the basics of grep, sed, make, and AWK. The book closes with a tutorial on making a programming language parser with yacc and how to use troff with ms and mm to format documents, the preprocessors tbl , eqn , and pic ...

  8. head (Unix) - Wikipedia

    en.wikipedia.org/wiki/Head_(Unix)

    sed 5q filename. The example prints every line (implicit) and quits after the fifth. Equivalently, awk may be used to print the first five lines in a file: awk 'NR < 6' filename. However, neither sed nor awk were available in early versions of BSD, which were based on Version 6 Unix, and included head. [1]

  9. sed - Wikipedia

    en.wikipedia.org/wiki/Sed

    sed scripts can have comments (the line starting with the # symbol). The s (substitute) command is the most important sed command. sed allows simple programming, with commands such as q (quit). sed uses regular expressions, such as .* (zero or more of any character).