mirror of
https://github.com/nushell/nushell
synced 2025-01-24 02:45:31 +00:00
8ee619954d
* cmdline args wip * WIP * redirect working * Add help and examples * Only show flags in signature of more than help
20 lines
275 B
Rust
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;
|