1
0
mirror of https://github.com/nushell/nushell.git synced 2025-05-06 11:04:24 +02:00
nushell/crates/nu-command/tests/commands/random/mod.rs
Solomon d83781ddec
support filesize arguments in random binary/chars ()
Closes 

# User-Facing Changes

`random binary` and `random chars` now support filesize arguments:

```nushell
random binary 1kb
random chars --length 1kb
```
2024-10-12 14:49:05 +08:00

8 lines
73 B
Rust

mod binary;
mod bool;
mod chars;
mod dice;
mod float;
mod int;
mod uuid;