Skip to content
This repository has been archived by the owner on Apr 23, 2018. It is now read-only.
/ lwc-nodejs Public archive

A live-updating version of the UNIX wc command.

License

Notifications You must be signed in to change notification settings

timdp/lwc-nodejs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

lwc

npm JavaScript Standard Style

A live-updating version of the UNIX wc command.

DEPRECATED

This Node.js-based version of lwc is no longer being maintained. Please consider using the Go version, which has more features.

Installation

With npm:

npm install --global @timdp/lwc

With Yarn:

yarn global add @timdp/lwc

Usage

lwc [OPTION]...

Without any options, lwc will count the number of lines, words, and bytes in standard input, and write them to standard output. Contrary to wc, it will also update standard output while it is still counting.

The following wc options are currently supported:

  • --lines or -l
  • --words or -w
  • --chars or -m
  • --bytes or -c

Examples

Count the number of lines in a big file:

lwc --lines < big-file

Run a slow command and count the number of bytes logged:

slow-command | lwc --bytes

TODO

  • Accept file paths in addition to stdin
  • Support --help
  • Support --max-line-length
  • Support --files0-from
  • Add tests

Author

Tim De Pauw

License

MIT

About

A live-updating version of the UNIX wc command.

Resources

License

Stars

Watchers

Forks

Packages

No packages published