grep
Rédigé par Sylter
28 commentaires
Classé dans : Programmation, Shell
Chercher une chaîne texte dans les fichiers d'une arborescence :
find ./ -type f -print0 | xargs -0 grep "mon texte"
ou
grep -r "mon texte" .
ou
rgrep "mon texte" .