grep
Info:
Grep stands for Global search for Regular Expression and Print out. It is basically a search tool.
Examples:
grep 'current stable release'
: This would list all the text that matches the current stable release.grep -v 'garo'
: This would list all the entries that does NOT include garo.