programmazione:conta_le_parole
Conta le parole
Dato un file di testo testo.txt
grep -o "[[:alpha:]]*" testo.txt | sort | uniq -c | sort -n
programmazione/conta_le_parole.txt · Last modified: 20/12/2021 08:09 by lrosa
Dato un file di testo testo.txt
grep -o "[[:alpha:]]*" testo.txt | sort | uniq -c | sort -n