Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/devmanual:master commit in: tools-reference/head-and-tail/
Date: Thu, 09 Jan 2020 19:08:14
Message-Id: 1578558715.e1ef5183c2e4b79103b9edea6eda20f1054a4fe5.ulm@gentoo
1 commit: e1ef5183c2e4b79103b9edea6eda20f1054a4fe5
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 8 09:23:27 2020 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 9 08:31:55 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=e1ef5183
7
8 tools-reference/head-and-tail: Line counting in tail starts at 1.
9
10 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
11
12 tools-reference/head-and-tail/text.xml | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/tools-reference/head-and-tail/text.xml b/tools-reference/head-and-tail/text.xml
16 index 07ebd28..e2b7553 100644
17 --- a/tools-reference/head-and-tail/text.xml
18 +++ b/tools-reference/head-and-tail/text.xml
19 @@ -33,7 +33,7 @@ file. The <c>-n</c> argument specifies how many lines to display.
20
21 <p>
22 To specify "the last five lines", use <c>tail -n5</c>. To specify "all
23 -but the first five lines", use <c>tail -n+5</c>.
24 +but the first five lines", use <c>tail -n+6</c>.
25 </p>
26
27 <warning>