Skip to content

correct typo 'sterr' #513

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/man/man1/clush.1
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ show diff between common outputs (find the best reference output by focusing on
output directory for stdout files (OPTIONAL)
.TP
.BI \-\-errdir\fB= ERRDIR
output directory for sterr files (OPTIONAL)
output directory for stderr files (OPTIONAL)
.UNINDENT
.TP
.B File copying:
Expand Down
2 changes: 1 addition & 1 deletion doc/txt/clush.txt
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ Output behaviour:
--color=WHENCOLOR ``clush`` can use NO_COLOR, CLICOLOR and CLICOLOR_FORCE environment variables. NO_COLOR takes precedence over CLICOLOR_FORCE which takes precedence over CLICOLOR. When ``--color`` option is used these environment variables are not taken into account. ``--color`` tells whether to use ANSI colors to surround node or nodeset prefix/header with escape sequences to display them in color on the terminal. *WHENCOLOR* is ``never``, ``always`` or ``auto`` (which use color if standard output/error refer to a terminal). Colors are set to [34m (blue foreground text) for stdout and [31m (red foreground text) for stderr, and cannot be modified.
--diff show diff between common outputs (find the best reference output by focusing on largest nodeset and also smaller command return code)
--outdir=OUTDIR output directory for stdout files (OPTIONAL)
--errdir=ERRDIR output directory for sterr files (OPTIONAL)
--errdir=ERRDIR output directory for stderr files (OPTIONAL)

File copying:
-c, --copy copy local file or directory to remote nodes
Expand Down
2 changes: 1 addition & 1 deletion lib/ClusterShell/CLI/OptionParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def install_display_options(self,
optgrp.add_option("--diff", action="store_true", dest="diff",
help="show diff between gathered outputs")
optgrp.add_option("--outdir", action="store", dest="outdir", help="output directory for stdout files (OPTIONAL)")
optgrp.add_option("--errdir", action="store", dest="errdir", help="output directory for sterr files (OPTIONAL)")
optgrp.add_option("--errdir", action="store", dest="errdir", help="output directory for stderr files (OPTIONAL)")
self.add_option_group(optgrp)

def _copy_callback(self, option, opt_str, value, parser):
Expand Down