shifter 0.1.4

A CLI tool to rotate lines from stdin by n positions
# shifter
Install with `cargo install shifter`

Use like this:

```
$ cat input.txt
a
b
c
d
e
f
$ cat input.txt | shifter 3
d
e
f
a
b
c
```