1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 20:17:45 +00:00

Merge pull request #643 from jbcrail/fix-mv-help

Fix alignment of mv help.
This commit is contained in:
Heather 2015-07-02 09:23:22 +03:00
commit 942fe0d7e0

View file

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