A command line tool that counts the words, lines, bytes exist in a file.
Type cat | ./wc in the terminal to get the number for the words
- use flag -l --> count lines
- use flag -b --> count bytes
Type cat | wc.exe in the terminal to get the number for the words
- use flag -l --> count lines
- use flag -b --> count bytes