A simple wc tool built for https://github.com/CodingChallegesFYI.
NAME ccwc – word, line, character, and byte count SYNOPSIS ccwc [-lwcm] [file] DESCRIPTION A wc utility clone buit for https://github.com/CodingChallegesFYI/SharedSolutions/blob/main/Solutions/challenge-wc.md Arguments: - w number of words - l number of lines - c file bytes - m number of characters EXAMPLES $ ccwc test.txt 339292 58164 7145 342190 test.txt $ ccwc -w -l test.txt 58164 7145 test.txt