https://github.com/tk04/wclinux_impl
wc linux command implementation in C
https://github.com/tk04/wclinux_impl
Last synced: over 1 year ago
JSON representation
wc linux command implementation in C
- Host: GitHub
- URL: https://github.com/tk04/wclinux_impl
- Owner: tk04
- Created: 2022-04-30T02:05:21.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-30T03:06:41.000Z (about 4 years ago)
- Last Synced: 2025-01-06T15:18:35.849Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wc linux command implementation in C
Count metrics from a file such as word count, character count, list unique words w/ number of appearances, and print indexes in textfile where the words appeared.
# flags
- -s: print words in alphabetical order
- -w: print word count
- -c: print character count
- -p: print position of word appearances
- -v: print debugging info to STDERR
- -w, -c, and -p are mutually exclusive