Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 527 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 527 Bytes

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