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

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

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