Go to the first, previous, next, last section, table of contents.


Symbolic Links

Test: -lname pattern
Test: -ilname pattern
True if the file is a symbolic link whose contents match shell pattern pattern. For `-ilname', the match is case-insensitive. See section Shell Pattern Matching, for details about the pattern argument. So, to list any symbolic links to `sysdep.c' in the current directory and its subdirectories, you can do:

find . -lname '*sysdep.c'

Option: -follow
Dereference symbolic links. The following differences in behavior occur when this option is given:


Go to the first, previous, next, last section, table of contents.