]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
intro.1: ffix
authorStéphane Aulery <saulery@free.fr>
Fri, 6 Mar 2015 12:47:30 +0000 (13:47 +0100)
committerMichael Kerrisk <mtk.manpages@gmail.com>
Fri, 6 Mar 2015 13:56:51 +0000 (14:56 +0100)
Filenames in italic

Signed-off-by: Stéphane Aulery <saulery@free.fr>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
man1/intro.1

index 0caa0c4fadbda233fb52d5f09b507337c0ec274b..216445e2b549692a4e88e69b36fe020fa3fabd56 100644 (file)
@@ -200,14 +200,21 @@ Here it finds Maja's telephone number.
 Files live in a large tree, the file hierarchy.
 Each has a
 .I "pathname"
-describing the path from the root of the tree (which is called /)
+describing the path from the root of the tree (which is called
+.IR / )
 to the file.
-For example, such a full pathname might be /home/aeb/tel.
+For example, such a full pathname might be
+.IR /home/aeb/tel .
 Always using full pathnames would be inconvenient, and the name
 of a file in the current directory may be abbreviated by giving
 only the last component.
-That is why "/home/aeb/tel" can be abbreviated
-to "tel" when the current directory is "/home/aeb".
+That is why
+.I /home/aeb/tel
+can be abbreviated
+to 
+.I tel
+when the current directory is
+.IR /home/aeb .
 .LP
 The command
 .I pwd
@@ -231,7 +238,10 @@ The command
 (with a rather baroque syntax) will find files with given name
 or other properties.
 For example, "find . \-name tel" would find
-the file "tel" starting in the present directory (which is called ".").
+the file
+.I tel
+starting in the present directory (which is called
+.IR . ).
 And "find / \-name tel" would do the same, but starting at the root
 of the tree.
 Large searches on a multi-GB disk will be time-consuming,