]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
Put file types in namei.1.adoc in a table structure
authorMario Blättermann <mario.blaettermann@gmail.com>
Thu, 5 Mar 2026 19:53:18 +0000 (20:53 +0100)
committerMario Blättermann <mario.blaettermann@gmail.com>
Thu, 5 Mar 2026 19:53:18 +0000 (20:53 +0100)
misc-utils/namei.1.adoc

index a26cb01b3d021fefead653004aca5b786ac4f4a4..0e6f1f0c2847904fdb3777ebb277fe512fdac8b3 100644 (file)
@@ -22,17 +22,35 @@ This program is useful for finding "too many levels of symbolic links" problems.
 
 For each line of output, *namei* uses the following characters to identify the file type found:
 
-....
-   f: = the pathname currently being resolved
-    d = directory
-    l = symbolic link (both the link and its contents are output)
-    s = socket
-    b = block device
-    c = character device
-    p = FIFO (named pipe)
-    - = regular file
-    ? = an error of some kind
-....
+[cols=">1,4"]
+|===
+|f:
+|the pathname currently being resolved
+
+|d
+|directory
+
+|l
+|symbolic link (both the link and its contents are output)
+
+|s
+|socket
+
+|b
+|block device
+
+|c
+|character device
+
+|p
+|FIFO (named pipe)
+
+|-
+|regular file
+
+|?
+|an error of some kind
+|===
 
 *namei* prints an informative message when the maximum number of symbolic links this system can have has been exceeded.