bits shr for bits> bits shr {flags} (bits)
--signed, -s: always treat input number as a signed number--number-bytes, -n {string}: the word size in number of bytes, it can be 1, 2, 4, 8, auto, default value 8
bits: number of bits to shift right| input | output | 
|---|---|
| int | int | 
| list<int> | list<int> | 
Shift right a number with 2 bits
>8|bits shr2
2
Shift right a list of numbers
> [15352] |bits shr2
╭───┬───╮
│0│3│
│1│8│
│2│0│
╰───┴───╯
Tips: Command bits shr 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/bits_shr.html