wc es una utilidad de Linux que le permite obtener detalles sobre los archivos, como cuántas líneas, palabras, etc. tiene un archivo.
Las opciones más útiles del comando son:
-w, --words prints the number of worlds
-l, --lines prints the number of lines
-m, --chars prints the number of characters
Para contar el número de mundos en un archivo:
# wc -w textfile.txt
root@www [/]# wc -w textfile.txt
8531 textfile.txt
root@www [/]#
Para contar el número de líneas en un archivo:
# wc -l textfile.txt
root@web [/]# wc -l textfile.txt
198 textfile.txt
root@web [/]#
Para contar el número de caracteres en un archivo:
# wc -m textfile.txt
root@web [/]# wc -m textfile.txt
57678 textfile.txt
root@web [/]#
Para obtener más información sobre este comando, ejecute #man wc
Referencias:
archivo hombre wc