Discussion:
git: e697386cd9 - main - books/handbook: fix incorrect output shown in an example
Ceri Davies
2021-05-22 21:28:36 UTC
Permalink
The branch main has been updated by ceri:

URL: https://cgit.FreeBSD.org/doc/commit/?id=e697386cd9505cf71ec17ca2bf5eba5585bbc09f

commit e697386cd9505cf71ec17ca2bf5eba5585bbc09f
Author: Ceri Davies <***@FreeBSD.org>
AuthorDate: 2021-05-22 21:26:02 +0000
Commit: Ceri Davies <***@FreeBSD.org>
CommitDate: 2021-05-22 21:28:18 +0000

books/handbook: fix incorrect output shown in an example

"pgrep -l" does not show arguments.

Approved by: blackend (mentor)
---
documentation/content/en/books/handbook/basics/_index.adoc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

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.
Loading...