An open API service indexing awesome lists of open source software.

https://github.com/0xsirsaif/ccwc

Coding Challenges - WC in Go
https://github.com/0xsirsaif/ccwc

Last synced: 3 months ago
JSON representation

Coding Challenges - WC in Go

Awesome Lists containing this project

README

        

ccwc
------

ccwc is a command-line utility written in Go that mimics the functionality of the Unix `wc` command.
It provides the number of lines, words, and characters in a given file.

## Usage

You can use ccwc with the following flags:

- `-l`: Number of lines
- `-w`: Number of words
- `-m`: Number of characters
- `-c`: Number of bytes

If no flags are provided, ccwc will default to `-l`, `-w`, and `-c`.