1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-02 14:07:46 +00:00

Fix simple typo in mv.rs

This commit is contained in:
Remi Rampin 2015-06-30 15:21:40 -04:00
parent e7685e6fe9
commit 0ed57b3896

View file

@ -165,12 +165,11 @@ pub fn uumain(args: Vec<String>) -> i32 {
}
fn help(usage: &str) {
let msg = format!("a0{} {1}\n\n \
println!("a0{} {1}\n\n \
Usage: {0} SOURCE DEST\n \
or: {0} SOURCE... DIRECTORY \
\n\
{2}", NAME, VERSION, usage);
println!("{}", msg);
}
fn exec(files: &[PathBuf], b: Behaviour) -> i32 {