using find command we can find all symbolic links in a directory
find . -type l (Lowercase L)
it finds all symbolic constants in current directory and its sub directories.
we can specify the path as well with find command
find {PATH} -type l
{PATH} - is your directory path
Learn to Develop an iPhone or iPad App in 4 Weeks Learn the latest and greatest markup language in the market with Robin Nixon(HTML & HTML5) Now $29 Only(75% Off)
using find command we can
Wed, 06/30/2010 - 13:53 — bandariusing find command we can find all symbolic links in a directory
find . -type l (Lowercase L)
it finds all symbolic constants in current directory and its sub directories.
we can specify the path as well with find command
find {PATH} -type l
{PATH} - is your directory path