mirror of
https://github.com/nushell/nushell
synced 2025-01-03 16:58:58 +00:00
08a09e2273
* Making Commands match what UntaggedValue needs * WIP * WIP * WIP * Moved to expressions for conditions * Add 'each' command to use command blocks * More cleanup * Add test for 'each' * Instead use an expression block
38 lines
424 B
Rust
38 lines
424 B
Rust
mod append;
|
|
mod calc;
|
|
mod cd;
|
|
mod compact;
|
|
mod cp;
|
|
mod default;
|
|
mod each;
|
|
mod edit;
|
|
mod enter;
|
|
mod first;
|
|
mod format;
|
|
mod get;
|
|
mod group_by;
|
|
mod headers;
|
|
mod histogram;
|
|
mod insert;
|
|
mod last;
|
|
mod lines;
|
|
mod ls;
|
|
mod mkdir;
|
|
mod mv;
|
|
mod open;
|
|
mod parse;
|
|
mod pick;
|
|
mod prepend;
|
|
mod range;
|
|
mod rename;
|
|
mod reverse;
|
|
mod rm;
|
|
mod save;
|
|
mod sort_by;
|
|
mod split_by;
|
|
mod split_column;
|
|
mod sum;
|
|
mod touch;
|
|
mod uniq;
|
|
mod where_;
|
|
mod wrap;
|