Skip to content

Latest commit

 

History

History
55 lines (38 loc) · 991 Bytes

README.md

File metadata and controls

55 lines (38 loc) · 991 Bytes

wcc

This is a python implementation of the Unix utility wc.

This CLI is build purely using python and no other third party libraries have been used.

Inorder to use this CLI, we just need to use the generated executable file in root folder.

./wcc --help

Note: The current executable is generated in macOS, please follow this step(s) to generate new executable.

Features

  • Help text
  • Line count
  • Word count
  • Character count
  • Byte count
  • Multiple file support
  • Read from stdin ( | )
  • Handling error

Demo

Help Text

Help Text

Commands

Commands

Generate Executable

  • Clone or Download this repository
   git clone <HTTPS URL> or <SSH>
  • Move to the root directory
   cd wcc
  • Run the below make command
   make build

Enjoy 🎉