eclaireur.net

Commandes Linux utiles voire indispensables

Tech -15 mai 2020

1 minute de lecture

Pour chercher dans les fichiers :

grep -ilR:

grep -Ril "string to be searched" /path/to/dir i stands for ignore case (optional in your case). R stands for recursive. l stands for "show the file name, not the result itself". / stands for starting at the root of your machine.

Expressions régulières

définition