Actions

Grep: Difference between revisions

From Jedisaber Wiki

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..."
(No difference)

Revision as of 01:09, 22 December 2016

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