mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-06 03:02:55 +00:00
Sources: Eyes: https://www.x.org/releases/X11R7.6/doc/man/man1/xeyes.1.xhtml wc: FreeBSD manual.
23 lines
403 B
Markdown
23 lines
403 B
Markdown
## Name
|
|
|
|
wc - word, line, character, and byte count
|
|
|
|
## Synopsis
|
|
|
|
```sh
|
|
$ wc [--lines] [--bytes] [--words] [file...]
|
|
```
|
|
|
|
## Options:
|
|
|
|
* `--help`: Display help message and exit
|
|
* `--version`: Print version
|
|
* `-l`, `--lines`: Output line count
|
|
* `-c`, `--bytes`: Output byte count
|
|
* `-w`, `--words`: Output word count
|
|
|
|
## Arguments:
|
|
|
|
* `file`: File to process
|
|
|
|
<!-- Auto-generated through ArgsParser -->
|