enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. grep - Wikipedia

    en.wikipedia.org/wiki/Grep

    The pcregrep command is an implementation of grep that uses Perl regular expression syntax. [17] Similar functionality can be invoked in the GNU version of grep with the -P flag. [18] Ports of grep (within Cygwin and GnuWin32, for example) also run under Microsoft Windows. Some versions of Windows feature the similar qgrep or findstr command. [19]

  3. find (Unix) - Wikipedia

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

    In Unix-like operating systems, find is a command-line utility that locates files based on some user-specified criteria and either prints the pathname of each matched object or, if another action is requested, performs that action on each matched object.

  4. List of POSIX commands - Wikipedia

    en.wikipedia.org/wiki/List_of_POSIX_commands

    Find printable strings in files 2BSD strip: C programming Optional (SD) Remove unnecessary information from executable files Version 1 AT&T UNIX stty: Misc Mandatory Set the options for a terminal Version 2 AT&T UNIX tabs: Misc Mandatory Set terminal tabs PWB UNIX tail: Text processing Mandatory Copy the last part of a file PWB UNIX [citation ...

  5. List of GNU Core Utilities commands - Wikipedia

    en.wikipedia.org/wiki/List_of_GNU_Core_Utilities...

    This is a list of commands from the GNU Core Utilities for Unix environments. These commands can be found on Unix operating systems and most Unix-like operating systems.. GNU Core Utilities include basic file, shell and text manipulation utilities.

  6. Regular expression - Wikipedia

    en.wikipedia.org/wiki/Regular_expression

    For example, GNU grep has the following options: "grep -E" for ERE, and "grep -G" for BRE (the default), and "grep -P" for Perl regexes. Perl regexes have become a de facto standard, having a rich and powerful set of atomic expressions.

  7. xargs - Wikipedia

    en.wikipedia.org/wiki/Xargs

    In the above example, the find utility feeds the input of xargs with a long list of file names. xargs then splits this list into sublists and calls rm once for every sublist. Some implementations of xargs can also be used to parallelize operations with the -P maxprocs argument to specify how many parallel processes should be used to execute the ...

  8. pgrep - Wikipedia

    en.wikipedia.org/wiki/Pgrep

    pgrep is a command-line utility initially written for use with the Solaris 7 operating system by Mike Shapiro.It has since been available in illumos and reimplemented for the Linux and BSDs (DragonFly BSD, FreeBSD, NetBSD, and OpenBSD).

  9. cat (Unix) - Wikipedia

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

    This is the case for many common commands; the following examples cat file | grep pattern cat file | less can instead be written as grep pattern file less file A common interactive use of cat for a single file is to output the content of a file to standard output. However, if the output is piped or redirected, cat is unnecessary.