Update 23-01-2020

This commit is contained in:
2020-01-25 06:47:22 +01:00
parent 1f6b5d13d8
commit f760227ba1
28 changed files with 1864 additions and 57 deletions

View File

@@ -95,6 +95,18 @@ Recherche <u>combinée</u>:
find / -type f -user bruno -perm 755 -print
```
Recherche avec <u>regex</u>:
```bash
# les images avec extentions jpg|gif|png|jpeg dans le dossier Users
# -E => macOS only ??
find -E /Users/bruno -regex ".*\.(jpg|gif|png|jpeg)"
# non case-sensitive
find -E /Users/bruno -iregex ".*\.(jpg|gif|png|jpeg)"
```
Commandes en option: