From 71bc68a987327aa22d8dff4e15f58c8bb2d6d7fb Mon Sep 17 00:00:00 2001 From: Keunwoo Lee Date: Sun, 25 Jan 2015 22:11:33 -0800 Subject: [PATCH] od: rm -v alias for --version This shortflag conflicts with --output-duplicates. --- src/od/od.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/od/od.rs b/src/od/od.rs index 8c2b0cb16..58c61416e 100644 --- a/src/od/od.rs +++ b/src/od/od.rs @@ -38,7 +38,7 @@ pub fn uumain(args: Vec) -> 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) {