mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 20:17:45 +00:00
Improve descriptions of available options.
This commit is contained in:
parent
826d8a6530
commit
b008ed103d
1 changed files with 2 additions and 2 deletions
|
@ -41,8 +41,8 @@ pub fn uumain(args: Vec<String>) -> i32 {
|
|||
|
||||
opts.optopt("c", "bytes", "Print the first K bytes. With the leading '-', print all but the last K bytes", "[-]K");
|
||||
opts.optopt("n", "lines", "Print the first K lines. With the leading '-', print all but the last K lines", "[-]K");
|
||||
opts.optflag("h", "help", "help");
|
||||
opts.optflag("V", "version", "version");
|
||||
opts.optflag("h", "help", "display this help and exit");
|
||||
opts.optflag("V", "version", "output version information and exit");
|
||||
|
||||
let given_options = match opts.parse(&args) {
|
||||
Ok (m) => { m }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue