> For the complete documentation index, see [llms.txt](https://linux-tutorial-cli.gitbook.io/linux-cli-tutorial/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://linux-tutorial-cli.gitbook.io/linux-cli-tutorial/txt-files/wc.md).

# wc

## wc

The `wc` command is a Linux command that can be used to count the number of lines, words, and characters in a file. It is a versatile command that can be used to quickly get a count of the number of lines, words, and characters in a file.

The `wc` command is used as follows:

```
wc [options] file
```

* `options`: These are optional flags that can be used to control the behavior of the `wc` command.
* `file`: This is the name of the file that you want to count the lines, words, and characters in.

For example, the following command will count the lines, words, and characters in the file `myfile.txt`:

```
wc myfile.txt
```

The output of the `wc` command will be:

```
   100   200   300 myfile.txt
```

This output shows that the file `myfile.txt` has 100 lines, 200 words, and 300 characters.

The `wc` command can be used to count the lines, words, and characters in any file. It is a valuable tool for system administrators who need to track the size of files on their system. It can also be used by users to get a quick count of the number of lines, words, and characters in a file.

## help

```
```
