Is it possible to count number char, line in a file; if so, How?

Yes,It is possible to count the words,lines,characters in a file.. In Unix,i used.. $wc -c filename -> for characters $wc -l filename ->for lines $wc -w filename ->for words

No comments: