grep -v
ou
grep --invert-match
Vous pouvez également faire la même chose en utilisant find
:
find . -type f \( -iname "*" ! -iname ".exe" ! -iname ".html"\)
Plus d'informations ici.
Utiliser l'option de ligne de commande -v
ou --invert-match
,
ls -R |grep -v -E .*[\.exe]$\|.*[\.html]$