mirror of
https://github.com/nushell/nushell
synced 2025-01-01 15:58:55 +00:00
33 lines
503 B
Markdown
33 lines
503 B
Markdown
# shuffle
|
||
|
||
Shuffles the rows in a random order.
|
||
|
||
## Examples -
|
||
|
||
Passing the same input to shuffle multiple times gives different results -
|
||
|
||
```
|
||
❯ echo [ a b c d ] | shuffle
|
||
───┬───
|
||
0 │ a
|
||
1 │ c
|
||
2 │ d
|
||
3 │ b
|
||
───┴───
|
||
|
||
❯ echo [ a b c d ] | shuffle
|
||
───┬───
|
||
0 │ c
|
||
1 │ b
|
||
2 │ d
|
||
3 │ a
|
||
───┴───
|
||
|
||
❯ echo [ a b c d ] | shuffle
|
||
───┬───
|
||
0 │ c
|
||
1 │ b
|
||
2 │ a
|
||
3 │ d
|
||
───┴───
|
||
```
|