programming faqs interview questions tech technical educational freshers guide preparation interviews hr telephonic
try another color:
try another fontsize: 60% 70% 80% 90%
Programming FAQs

How to find symbolic links in linux

using find command we can

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