## word count count lines: ```bash wc -l <file> ``` ## watch ls directory every 1 second: ```bash watch -n 1 ls ``` cat file every 1 second: ```bash watch -n 1 cat <file> ```