This commit is contained in:
2019-05-12 16:17:58 +02:00
parent 941984f1ee
commit afc8ff0845
24 changed files with 945 additions and 35 deletions

View File

@@ -36,6 +36,14 @@ grep -l -r "brew" ./docs/
<u>Chercher dans tous les fichiers 'php' ou 'html' (et ignorer les dossiers '.git'):</u>
```bash
grep pattern $(find . -name '*.php' -or -name '*.html' | grep -v .git)
```
<u>Regex:</u>
```bash