Ecosyste.ms: Awesome
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: 21 days ago
JSON representation
Coding Challenges - WC in Go
- Host: GitHub
- URL: https://github.com/0xsirsaif/ccwc
- Owner: 0xsirsaif
- Created: 2024-05-11T17:41:17.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-12T19:37:09.000Z (8 months ago)
- Last Synced: 2024-05-20T21:23:22.847Z (8 months ago)
- Language: Go
- Size: 1.23 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
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 bytesIf no flags are provided, ccwc will default to `-l`, `-w`, and `-c`.