http://www.simtel.net/prod
>
about your text files. Calculates such information as: size of file, whitespace, number of lines, shortest and longest lines, average line length - with and without blank lines, number of pages printed at x lines per page, number of words, longest and shortest words, average word length, number of sentences and words per sentence, long words (> x chars) fog index (readability index) long lines (> x chars) and percentage of text in file.
Optionally displays charts including character occurrences, length of words and number of characters per line.
<
Main Topics
Browse All Topics





by: dragon-itPosted on 2006-08-18 at 07:55:37ID: 17342841
You can use FIND if there is character than is on each line, e.g. comma:
find "," /c < yourfile.txt
or
find /v "djskjsdkds" /c < yourfile.txt
will count all lines that don't have "dsjksdkdsj" in which should be all of them!
Steve