# wc -l

`wc -l notes.txt`

Count the lines in a file.

## What each part does

- `wc` — command — count lines / words / characters
- `-l` — flag — lines
- `notes.txt` — argument: a file, a folder, or text

Source: https://zero2vibecode.com/explain/wc-l
