From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1401259-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C34AD158090 for <garchives@archives.gentoo.org>; Fri, 27 May 2022 09:02:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 883D6E07DB; Fri, 27 May 2022 09:02:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6C6CBE07DB for <gentoo-commits@lists.gentoo.org>; Fri, 27 May 2022 09:02:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A671834147F for <gentoo-commits@lists.gentoo.org>; Fri, 27 May 2022 09:02:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 16DC14D3 for <gentoo-commits@lists.gentoo.org>; Fri, 27 May 2022 09:02:51 +0000 (UTC) From: "Ulrich Müller" <ulm@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" <ulm@gentoo.org> Message-ID: <1653642096.512c283a0345ed0c4c72f08a3d60f024d704873c.ulm@gentoo> Subject: [gentoo-commits] proj/devmanual:master commit in: tools-reference/bash/ X-VCS-Repository: proj/devmanual X-VCS-Files: tools-reference/bash/text.xml X-VCS-Directories: tools-reference/bash/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 512c283a0345ed0c4c72f08a3d60f024d704873c X-VCS-Branch: master Date: Fri, 27 May 2022 09:02:51 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8a1c7e02-8bc9-4bc8-9323-691b4ac1fb0b X-Archives-Hash: 5ddd7ce502f65a58e36a21c8eb02b576 commit: 512c283a0345ed0c4c72f08a3d60f024d704873c Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Sat May 21 08:14:11 2022 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Fri May 27 09:01:36 2022 +0000 URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=512c283a tools-reference/bash: Rework table on file comparison - Replace "same device and inode numbers" by "hard link". - Fix grammar (remove "if"). - Remove full stops (according to style guide). Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> tools-reference/bash/text.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools-reference/bash/text.xml b/tools-reference/bash/text.xml index cb5522a..092e95d 100644 --- a/tools-reference/bash/text.xml +++ b/tools-reference/bash/text.xml @@ -360,8 +360,8 @@ available (lifted from <c>man bash</c>): <body> <p> -The general form of a file comparison is <c>"file1" -operator "file2"</c>. The -following are available (lifted from <c>man bash</c>): +The general form of a file comparison is <c>"file1" -operator "file2"</c>. +The following are available: </p> <table> @@ -373,16 +373,16 @@ following are available (lifted from <c>man bash</c>): <ti><c>file1 -nt file2</c></ti> <ti> file1 is newer (according to modification date) than file2, - or if file1 exists and file2 does not. + or file1 exists and file2 does not </ti> </tr> <tr> <ti><c>file1 -ot file2</c></ti> - <ti>file1 is older than file2, or if file2 exists and file1 does not.</ti> + <ti>file1 is older than file2, or file2 exists and file1 does not</ti> </tr> <tr> <ti><c>file1 -ef file2</c></ti> - <ti>file1 and file2 refer to the same device and inode numbers.</ti> + <ti>file1 is a hard link to file2</ti> </tr> </table>