Update 23-01-2020
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user