W3cubDocs

/Nushell

roll right for filters

Roll table columns right.

Signature

> roll right {flags}

Flags

  • --by, -b {int}: Number of columns to roll
  • --cells-only, -c: rotates columns leaving headers fixed

Input/output types:

input output
record record
table table

Examples

Rolls columns of a record to the right

> {a:1b:2c:3} |roll right
╭───┬───╮
c3
a1
b2
╰───┴───╯

Rolls columns to the right

> [[abc]; [123] [456]] |roll right
╭───┬───┬───┬───╮
# │ c │ a │ b │
├───┼───┼───┼───┤
0312
1645
╰───┴───┴───┴───╯

Rolls columns to the right with fixed headers

> [[abc]; [123] [456]] |roll right--cells-only
╭───┬───┬───┬───╮
# │ a │ b │ c │
├───┼───┼───┼───┤
0312
1645
╰───┴───┴───┴───╯

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

Copyright © 2019–2023 The Nushell Project DevelopersLicensed under the MIT License.
https://www.nushell.sh/commands/docs/roll_right.html