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

https://github.com/varunu28/jwc

Java implementation of Linux wc utility
https://github.com/varunu28/jwc

Last synced: 8 months ago
JSON representation

Java implementation of Linux wc utility

Awesome Lists containing this project

README

          

# jwc
Java implementation of Linux wc utility

## Usage
```agsl
jwc -wlcb file.txt
jwc --words file.txt
jwc --lines file.txt
jwc --lines --words file.txt
jwc -wc --lines file.txt
```

## How to build the project
```agsl
./gradlew shadowJar
alias jwc='java -jar build/libs/jwc-shadow.jar'
```