forked from extern/nushell
7d46177cf3
* Allow mv multiple files at once * Expand dots in mv src + dst
11 lines
250 B
Rust
11 lines
250 B
Rust
pub mod dots;
|
|
mod expansions;
|
|
mod helpers;
|
|
mod tilde;
|
|
mod util;
|
|
|
|
pub use expansions::{canonicalize_with, expand_path_with, expand_to_real_path};
|
|
pub use helpers::{config_dir, home_dir};
|
|
pub use tilde::expand_tilde;
|
|
pub use util::trim_trailing_slash;
|