aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCeri Davies <ceri@FreeBSD.org>2021-05-22 21:26:02 +0000
committerCeri Davies <ceri@FreeBSD.org>2021-05-22 21:28:18 +0000
commite697386cd9505cf71ec17ca2bf5eba5585bbc09f (patch)
tree41600277e40975f9c0c1e6589cde19968a7ca7ea
parent474a63dc789a9debcaec1c84cf45db204c8ff1aa (diff)
books/handbook: fix incorrect output shown in an example
"pgrep -l" does not show arguments. Approved by: blackend (mentor)
-rw-r--r--documentation/content/en/books/handbook/basics/_index.adoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/content/en/books/handbook/basics/_index.adoc b/documentation/content/en/books/handbook/basics/_index.adoc
index 0d787495cf..3755b4a547 100644
--- a/documentation/content/en/books/handbook/basics/_index.adoc
+++ b/documentation/content/en/books/handbook/basics/_index.adoc
@@ -1283,7 +1283,7 @@ This example shows how to send a signal to man:inetd[8]. The man:inetd[8] config
[source,shell]
....
% pgrep -l inetd
-198 inetd -wW
+198 inetd
....
+
. Use man:kill[1] to send the signal. As man:inetd[8] is owned by `root`, use man:su[1] to become `root` first.