shifter 0.1.2

A CLI tool to rotate lines from stdin by n positions
shifter-0.1.2 is not a library.

shifter

Install with cargo install shifter

Use like this:

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