bits ror for bits

Bitwise rotate right for integers.

Signature

> bits ror (bits) --signed --number-bytes

Parameters

  • bits: number of bits to rotate right
  • --signed (-s): always treat input number as a signed number
  • --number-bytes {string}: the word size in number of bytes, it can be 1, 2, 4, 8, auto, default value 8

Input/output types:

inputoutput
intint
list<int>list<int>

Examples

Rotate right a number with 60 bits

> 17 | bits ror 60
272

Rotate right a list of numbers of one byte

> [15 33 92] | bits ror 2 -n '1'
╭───┬─────╮
│ 0195 │
│ 172 │
│ 223 │
╰───┴─────╯

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