How do I pipe the output of grep as the search pattern for another grep?
As an example:
grep | xargs grep
This is what I use to search for a file from a listing:
ls -la | grep 'file-in-which-to-search'