User Tools

Site Tools


programmazione:conta_le_parole

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

programmazione:conta_le_parole [11/06/2017 06:15] – external edit 127.0.0.1programmazione:conta_le_parole [20/12/2021 08:09] (current) lrosa
Line 1: Line 1:
 +====== Conta le parole ======
 +
 +Dato un file di testo ''testo.txt''
 +<code bash> grep -o "[[:alpha:]]*" testo.txt | sort | uniq -c | sort -n </code>