Recherche chaine de caractere


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. grep "chaine" * -r
  2.  
  3. # recherche de "chaine" dans tous les fichier *.extension
  4. find ./ -type f -name \*extension -exec grep -riH "chaine" {} \;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.