nushell/crates/nu-cli/tests/commands/mod.rs

55 lines
628 B
Rust
Raw Normal View History

mod alias;
mod append;
2020-05-30 15:25:39 +02:00
mod average;
mod cal;
2020-01-29 14:34:36 +01:00
mod calc;
mod cd;
mod compact;
mod cp;
mod default;
mod drop;
mod each;
mod enter;
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;
2020-03-03 22:01:24 +01:00
mod rename;
mod reverse;
mod rm;
mod save;
mod select;
mod semicolon;
mod skip_until;
mod sort_by;
mod split_by;
mod split_column;
2020-05-24 08:41:30 +02:00
mod split_row;
mod str_;
mod sum;
2020-02-18 21:54:32 +01:00
mod touch;
mod trim;
mod uniq;
mod update;
mod where_;
2020-05-06 05:56:31 +02:00
mod with_env;
mod wrap;