nushell/crates/nu-command/src/filesystem/mod.rs
JT 8ee619954d
Start support for commandline args to nu itself (#851)
* cmdline args wip

* WIP

* redirect working

* Add help and examples

* Only show flags in signature of more than help
2022-01-27 01:42:39 +11:00

20 lines
275 B
Rust

mod cd;
mod cp;
mod ls;
mod mkdir;
mod mv;
mod open;
mod rm;
mod save;
mod touch;
mod util;
pub use cd::Cd;
pub use cp::Cp;
pub use ls::Ls;
pub use mkdir::Mkdir;
pub use mv::Mv;
pub use open::{BufferedReader, Open};
pub use rm::Rm;
pub use save::Save;
pub use touch::Touch;