From 17f15695dfc32378b8529d75ea9807fb6dcca7a6 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Sat, 15 Feb 2025 17:18:34 +0100 Subject: [PATCH] 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 --- text-utils/colrm.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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); } -- 2.47.3