Pergunta de entrevista da empresa eBay

How to retrieve a file with a specific string or keyword using UNIX command line

Respostas da entrevista

Sigiloso

11 de abr. de 2014

find . | grep -i "String" find is generally used to find the name of the files & Grep is used to search for content present in the file

2

Sigiloso

24 de mar. de 2014

grep -r "expression to find"

1

Sigiloso

4 de mar. de 2014

I knew it had some thing to do with grep but was unable to give the specific line.