Grep

From Psygen Wiki
Revision as of 01:09, 22 December 2016 by Admin (talk | contribs) (Created page with "== Usage == grep searches the name file or files for the specified string. (You can also use egrep to search inside a file using Regular Expressions ) <code>grep bananas...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Usage

grep searches the name file or files for the specified string. (You can also use egrep to search inside a file using Regular Expressions )

grep bananas filename.txt This searches for the word bananas in the file, filename.txt


References

  1. grep man page