]> granicus.if.org Git - procps-ng/commitdiff
pgrep delimeter to delimiter
authorCraig Small <csmall@enc.com.au>
Thu, 11 Oct 2012 10:34:50 +0000 (21:34 +1100)
committerCraig Small <csmall@enc.com.au>
Thu, 11 Oct 2012 10:34:50 +0000 (21:34 +1100)
pgrep used delimiter and delimeter, the correct spelling is delimiter.
Thanks to Alexander Kobel for the heads-up.

Signed-off-by: Craig Small <csmall@enc.com.au>
pgrep.1
pgrep.c

diff --git a/pgrep.1 b/pgrep.1
index bc0c9720fc25bda8a8e07841f741ed48b1d1677c..1c37e43599d7fd5ae38686741375720675c7960a 100644 (file)
--- a/pgrep.1
+++ b/pgrep.1
@@ -2,7 +2,7 @@
 .\" Licensed under version 2 of the GNU General Public License.
 .\" Copyright 2000 Kjetil Torgrim Homme
 .\"
-.TH PGREP "1" "September 2011" "procps-ng" "User Commands"
+.TH PGREP "1" "October 2012" "procps-ng" "User Commands"
 .SH NAME
 pgrep, pkill \- look up or signal processes based on name and other attributes
 .SH SYNOPSIS
@@ -51,7 +51,7 @@ Suppress normal output; instead print a count of matching processes.  When
 count does not match anything, e.g. returns zero, the command will return
 non-zero value.  (\fBpgrep\fP only.)
 .TP
-\fB\-d\fR, \fB\-\-delimeter\fR \fIdelimiter\fP
+\fB\-d\fR, \fB\-\-delimiter\fR \fIdelimiter\fP
 Sets the string used to delimit each process ID in the output (by default a
 newline).
 .RB ( pgrep
diff --git a/pgrep.c b/pgrep.c
index 37c7d6cc22473834e321c2ea56a0e4e382bccd33..6cba9aa5a192cf763a16174afdec6f8aa434fff2 100644 (file)
--- a/pgrep.c
+++ b/pgrep.c
@@ -97,7 +97,7 @@ static int __attribute__ ((__noreturn__)) usage(int opt)
        fputs(USAGE_OPTIONS, fp);
        if (i_am_pkill == 0) {
                fputs(_(" -c, --count               count of matching processes\n"
-                       " -d, --delimeter <string>  specify output delimeter\n"
+                       " -d, --delimiter <string>  specify output delimiter\n"
                        " -l, --list-name           list PID and process name\n"
                        " -v, --inverse             negates the matching\n"), fp);
        }
@@ -604,7 +604,7 @@ static void parse_opts (int argc, char **argv)
        static const struct option longopts[] = {
                {"signal", required_argument, NULL, SIGNAL_OPTION},
                {"count", no_argument, NULL, 'c'},
-               {"delimeter", required_argument, NULL, 'd'},
+               {"delimiter", required_argument, NULL, 'd'},
                {"list-name", no_argument, NULL, 'l'},
                {"list-full", no_argument, NULL, 'a'},
                {"full", no_argument, NULL, 'f'},