| Crates.io | shifter |
| lib.rs | shifter |
| version | 0.1.4 |
| created_at | 2025-08-09 17:05:37.755769+00 |
| updated_at | 2025-08-09 17:16:57.632326+00 |
| description | A CLI tool to rotate lines from stdin by n positions |
| homepage | https://github.com/henrikzenkert/shifter |
| repository | https://github.com/henrikzenkert/shifter |
| max_upload_size | |
| id | 1788080 |
| size | 7,125 |
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