mkwin: proofread and clarified help text

This commit is contained in:
Valerie Wolfe 2024-06-11 11:51:50 -04:00
parent 9bc9ba71ec
commit 480620e192

View file

@ -107,20 +107,20 @@ usage: mkwin [flags] <target> [-- args]
args: args:
<target> The target program the resulting script will run. <target> The target program the resulting script will run.
[-- args] Arguments to forward to the target program. These are [-- args] Arguments forwarded to the target program. These are placed
placed before any other arguments if present. before any other arguments in the resulting script.
flags: flags:
-h, --help Shows this help text and exit. -h, --help Show this help text and exit.
--empty The resulting script will not pass arguments. --empty The resulting script will not pass arguments.
--pc=<flags> The resulting script will use the 'path-convert' to convert --pc=<flags> The resulting script will use the 'path-convert' tool to
arguments from UNIX to DOS, with the provided set of flags convert arguments from UNIX to DOS, with the provided set of
('x' for no flags). flags ('x' for no flags).
-q, --quiet The resulting script will run the target program in the -q, --quiet The resulting script will run the target program in the
background and with its outputs redirected to '/dev/null'.", background and redirect all output to '/dev/null'.",
env!("CARGO_PKG_VERSION")); env!("CARGO_PKG_VERSION"));
} }