Quando sto usando
find . -type f -name "*.htm*" -o -name "*.js*" -o -name "*.txt"
trova tutti i tipi di file. Ma quando aggiungo -exec
alla fine:
find . -type f -name "*.htm*" -o -name "*.js*" -o -name "*.txt" -exec sh -c 'echo "$0"' {} \;
sembra che stampa solo .txt
file. Che cosa sto facendo di sbagliato?
Nota: usando MINGW (Git Bash)
*.js*
o*.txt
.