1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-31 21:17:46 +00:00

od: rm -v alias for --version

This shortflag conflicts with --output-duplicates.
This commit is contained in:
Keunwoo Lee 2015-01-25 22:11:33 -08:00
parent b756a57345
commit 71bc68a987

View file

@ -38,7 +38,7 @@ pub fn uumain(args: Vec<String>) -> isize {
specified."),
"BYTES"),
getopts::optflag("h", "help", "display this help and exit."),
getopts::optflag("v", "version", "output version information and exit."),
getopts::optflag("", "version", "output version information and exit."),
];
let matches = match getopts::getopts(args.tail(), &opts) {