nushell/crates/nu-cli/tests/commands/mod.rs
Jakub Žádník 3d63901b3b
Add 'every' command to select (or skip) every nth row (#1992)
* Add 'every' command

* Add --skip option to 'every' command

This option skips instead of selects every nth row

* Fix descriptions for 'every' command

* Add docummentation for 'every' command

* Check actual filenames in 'every' command tests
2020-06-17 07:58:41 +12:00

56 lines
639 B
Rust

mod alias;
mod append;
mod average;
mod cal;
mod calc;
mod cd;
mod compact;
mod cp;
mod default;
mod drop;
mod each;
mod enter;
mod every;
mod first;
mod format;
mod get;
mod group_by;
mod headers;
mod histogram;
mod insert;
mod is_empty;
mod keep;
mod keep_until;
mod keep_while;
mod last;
mod lines;
mod ls;
mod math;
mod merge;
mod mkdir;
mod mv;
mod open;
mod parse;
mod prepend;
mod range;
mod rename;
mod reverse;
mod rm;
mod save;
mod select;
mod semicolon;
mod skip_until;
mod sort_by;
mod split_by;
mod split_column;
mod split_row;
mod str_;
mod sum;
mod touch;
mod trim;
mod uniq;
mod update;
mod where_;
mod with_env;
mod wrap;