1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 11:07:44 +00:00

refactor help text and variable names

This commit is contained in:
Roy Ivy III 2020-05-27 15:12:56 -05:00
parent 8cf58de0a7
commit fb5ab86aee

View file

@ -63,7 +63,7 @@ pub fn uumain(mut args: Vec<String>) -> i32 {
) )
.optflag("R", "recursive", "change files and directories recursively"); .optflag("R", "recursive", "change files and directories recursively");
// sanitize input for - at beginning (e.g. chmod -x testfile). Remove // sanitize input for - at beginning (e.g. chmod -x test_file). Remove
// the option and save it for later, after parsing is finished. // the option and save it for later, after parsing is finished.
let negative_option = sanitize_input(&mut args); let negative_option = sanitize_input(&mut args);