# get-content
`Get-Content` helps you, you know, get content.

## View the last 5 lines of a file and refresh every 5 seconds
Kind of like `tail` in Linux:

```
get-content somefile.txt -tail 5 -wait
```
