Recherche…


Syntaxe

  • grep [OPTIONS] PATTERN [FILE ...]

Comment rechercher un motif dans un fichier

Pour trouver le mot foo dans la barre de fichiers:

grep foo ~/Desktop/bar

Pour rechercher toutes les lignes ne contenant pas foo dans la barre de fichiers:

grep –v foo ~/Desktop/bar

Pour trouver tous les mots contenant foo (WIldcard Expansion):

grep "*foo" ~/Desktop/bar



Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow