Mémo shellInfo lang sh# Recherche dans des fichiers1 find . -type f -name "*.md*" -exec grep -il "truc" {} \; # Recherche dans des fichiers avec contexte1 find . -type f -exec grep -H -n -C2 --regexp="truc" {} \; Last updated Jul 29, 2023 Edit Source