Question d’entretien chez eBay

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

Réponses aux questions d'entretien

Utilisateur anonyme

11 avr. 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

Utilisateur anonyme

24 mars 2014

grep -r "expression to find"

1

Utilisateur anonyme

4 mars 2014

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