From: Benno Schulenberg Date: Sat, 15 Feb 2025 16:18:34 +0000 (+0100) Subject: colrm: make the wording of the doc string analogous to that of `col` X-Git-Tag: v2.42-start~39 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=17f15695dfc32378b8529d75ea9807fb6dcca7a6;p=thirdparty%2Futil-linux.git colrm: make the wording of the doc string analogous to that of `col` Which allows removing an awkwardly placed and rather redundant sentence. Signed-off-by: Benno Schulenberg --- diff --git a/text-utils/colrm.c b/text-utils/colrm.c index 363d732b6..b1370ac81 100644 --- a/text-utils/colrm.c +++ b/text-utils/colrm.c @@ -63,12 +63,10 @@ static void __attribute__((__noreturn__)) usage(void) program_invocation_short_name); fputs(USAGE_SEPARATOR, out); - fputs(_("Filter out the specified columns.\n"), out); + fputs(_("Filter out the specified columns from standard input.\n"), out); fputs(USAGE_OPTIONS, out); fprintf(out, USAGE_HELP_OPTIONS(16)); - fprintf(out, _("%s reads from standard input and writes to standard output\n\n"), - program_invocation_short_name); fprintf(out, USAGE_MAN_TAIL("colrm(1)")); exit(EXIT_SUCCESS); }