I need to find every symbolic link on the server.
The version is AIX 6.1.
man find says
-L Follow symbolic links
But find -L is not a proper usage. Usage: find [-H | -L] Path-list [Expression-list]
I tried to Google this but couldn't find answers.
find /some/directory -name '*.txt', thefindcommand will not follow any symbolic links it finds as it is traversing the sub-structure of the starting directory. If you add the-Loption, it will follow symbolic links (and, in particular, if any of those links leads to a directory, it will traverse that remote directory). The reason why this is not the default behaviour is that it can lead to 'infinite' paths. Consider what happens when you have a symlink created byln -s . xyz...without the-L, there'll be no problem; with it,findruns for a long time. – Jonathan Leffler Jan 13 '12 at 7:09