diff options
| author | Bernhard Voelker <mail@bernhard-voelker.de> | 2020-06-16 23:52:31 +0200 |
|---|---|---|
| committer | Bernhard Voelker <mail@bernhard-voelker.de> | 2020-06-21 19:40:11 +0200 |
| commit | 7c72d72838a0728c70bb800092596a0746b793d2 (patch) | |
| tree | 368f95eec1ccb6513a03061f002416499284cc31 | |
| parent | f0669373700a231695324d8f0135f0564fed8e57 (diff) | |
| download | findutils-7c72d72838.tar.gz | |
doc: improve section 'Hard links' and fix 'find -L -samefile' description
* doc/find.texi (Hard links): Clarify that 'find -L -samefile FILE'
returns both hard links and symbolic links to FILE, and why.
Further attempt to improve the wording of the whole section by
avoiding wording like "you can ...", and instead describing more
how find works and behaves for the -samefile, -inum and -links
options. Especially mention that -inum potentially returns files
with the given inode number but yet are no hard links per definition:
this happens if they are on a different file system, i.e., if they
have a different device number.
Fixes https://sv.gnu.org/bugs/?58458
| -rw-r--r-- | NEWS | 3 | ||||
| -rw-r--r-- | doc/find.texi | 93 |
2 files changed, 57 insertions, 39 deletions
@@ -16,6 +16,9 @@ find -used works again. This predicate was not working properly since adding the support for sub-second timestamp resolution for various predicates in FINDUTILS_4_3_3-1 back in 2007. +#58458: doc: improve section 'Hard links', especially fix the description + regarding 'find -L -samefile FILE'. + #54730: Add additional valuable example of find -quit #48135: Fix testsuite error on Hurd and BSD related to ln diff --git a/doc/find.texi b/doc/find.texi index 3c383b6..aeb59cd 100644 --- a/doc/find.texi +++ b/doc/find.texi @@ -782,54 +782,69 @@ find . -lname '*sysdep.c' @node Hard Links @subsection Hard Links -Hard links allow more than one name to refer to the same file. To -find all the names which refer to the same file as @var{name}, use -@samp{-samefile NAME}. If you are not using the @samp{-L} option, you -can confine your search to one filesystem using the @samp{-xdev} -option. This is useful because hard links cannot point outside a -single filesystem, so this can cut down on needless searching. - -If the @samp{-L} option is in effect, and @var{name} is in fact a symbolic -link, the symbolic link will be dereferenced. Hence you are searching -for other links (hard or symbolic) to the file pointed to by @var{name}. If -@samp{-L} is in effect but @var{name} is not itself a symbolic link, other -symbolic links to the file @var{name} will be matched. - -You can also search for files by inode number. This can occasionally -be useful in diagnosing problems with filesystems for example, because -@code{fsck} tends to print inode numbers. Inode numbers also -occasionally turn up in log messages for some types of software, and -are used to support the @code{ftok()} library function. +Hard links allow more than one name to refer to the same file on a +file system, i.e., to the same inode. To find all the names which refer +to the same file as @var{name}, use @samp{-samefile NAME}. + +@deffn Test -samefile NAME +True if the file is a hard link to the same inode as @var{name}. +This implies that @var{name} and the file reside on the same file system, +i.e., they have the same device number. + +Unless the @samp{-L} option is also given to follow symbolic links, one may +confine the search to one file system by using the @samp{-xdev} option. +This is useful because hard links cannot point outside a single file system, +so this can cut down on needless searching. + +If the @samp{-L} option is in effect, then dereferencing of symbolic links +applies both to the @var{name} argument of the @samp{-samefile} primary and +to each file examined during the traversal of the directory hierarchy. +Therefore, @samp{find -L -samefile NAME} will find both hard links and +symbolic links pointing to the file referenced by @var{name}. +@end deffn + +@command{find} also allows to search for files by inode number. + +This can occasionally be useful in diagnosing problems with file systems; +for example, @command{fsck} and @command{lsof} tend to print inode numbers. +Inode numbers also occasionally turn up in log messages for some types of +software. You can learn a file's inode number and the number of links to it by -running @samp{ls -li} or @samp{find -ls}. +running @samp{ls -li}, @samp{stat} or @samp{find -ls}. You can search for hard links to inode number NUM by using @samp{-inum -NUM}. If there are any filesystem mount points below the directory +NUM}. If there are any file system mount points below the directory where you are starting the search, use the @samp{-xdev} option unless -you are also using the @samp{-L} option. Using @samp{-xdev} this -saves needless searching, since hard links to a file must be on the -same filesystem. @xref{Filesystems}. - -@deffn Test -samefile NAME -File is a hard link to the same inode as @var{name}. If the @samp{-L} -option is in effect, symbolic links to the same file as @var{name} points to -are also matched. -@end deffn +you are also using the @samp{-L} option. Using @samp{-xdev} saves +needless searching, since hard links to a file must be on the +same file system. @xref{Filesystems}. @deffn Test -inum n -File has inode number @var{n}. The @samp{+} and @samp{-} qualifiers -also work, though these are rarely useful. Much of the time it is -easier to use @samp{-samefile} rather than this option. +True if the file has inode number @var{n}. The @samp{+} and @samp{-} qualifiers +also work, though these are rarely useful. + +Please note that the @samp{-inum} primary simply compares the inode number +against the given @var{n}. +This means that a search for a certain inode number in several file systems +may return several files with that inode number, but as each file system has +its own device number, those files are not necessarily hard links to the +same file. + +Therefore, it is much of the time easier to use @samp{-samefile} rather than +this option. @end deffn -You can also search for files that have a certain number of links, -with @samp{-links}. Directories normally have at least two hard -links; their @file{.} entry is the second one. If they have -subdirectories, each of those also has a hard link called @file{..} to -its parent directory. The @file{.} and @file{..} directory entries -are not normally searched unless they are mentioned on the @code{find} -command line. +@command{find} also allows to search for files that have a certain number of +links, with @samp{-links}. + +A directory normally has at least two hard links: the entry named in its parent +directory, and the @file{.} entry inside of the directory. +If a directory has subdirectories, each of those also has a hard link called +@file{..} to its parent directory. + +The @file{.} and @file{..} directory entries are not normally searched unless +they are mentioned on the @code{find} command line. @deffn Test -links n File has @var{n} hard links. |
