Most users are using cat and grep for searching for a string in a file:
cat filename | grep search_string
But you can use grep completely without cat:
grep search_string filename
Most users are using cat and grep for searching for a string in a file:
cat filename | grep search_string
But you can use grep completely without cat:
grep search_string filename