roll down for filters

Roll table rows down.

WARNING

Command roll down was not included in the official binaries by default, you have to build it with --features=extra flag

Signature

> roll down {flags}

Flags

  • --by, -b {int}: Number of rows to roll

Input/output types:

inputoutput
tabletable

Examples

Rolls rows down of a table

> [[a b]; [1 2] [3 4] [5 6]] | roll down
╭───┬───┬───╮
 # │ a │ b │
├───┼───┼───┤
 0  5  6 
 1  1  2 
 2  3  4 
╰───┴───┴───╯