mirror of
https://github.com/nushell/nushell
synced 2024-12-27 05:23:11 +00:00
f37f29b441
* start playing with ways to use the uniq command * WIP * Got uniq working, but still need to figure out args issue and add tests * Add some tests for uniq * fmt * remove commented out code * Add documentation and some additional tests showing uniq values and rows. Also removed args TODO * add changes that didn't get committed * whoops, I didn't save the docs correctly... * fmt * Add a test for uniq with nested json * Add another test * Fix unique-ness when json keys are out of order and make the test json more complicated
31 lines
349 B
Rust
31 lines
349 B
Rust
mod append;
|
|
mod cd;
|
|
mod compact;
|
|
mod cp;
|
|
mod default;
|
|
mod edit;
|
|
mod enter;
|
|
mod first;
|
|
mod format;
|
|
mod get;
|
|
mod group_by;
|
|
mod histogram;
|
|
mod insert;
|
|
mod last;
|
|
mod lines;
|
|
mod ls;
|
|
mod mkdir;
|
|
mod mv;
|
|
mod open;
|
|
mod parse;
|
|
mod prepend;
|
|
mod range;
|
|
mod reverse;
|
|
mod rm;
|
|
mod save;
|
|
mod sort_by;
|
|
mod split_by;
|
|
mod split_column;
|
|
mod uniq;
|
|
mod where_;
|
|
mod wrap;
|