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
- Host: GitHub
- URL: https://github.com/varunu28/jwc
- Owner: varunu28
- Created: 2023-07-21T16:33:19.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-15T14:50:06.000Z (about 2 years ago)
- Last Synced: 2025-01-01T23:11:25.203Z (9 months ago)
- Language: Java
- Size: 65.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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'
```