write a command to list all the links from a directory code example
Example 1: bash ls show link
ls -la <path> | grep "\->"
Example 2: show symlink
readlink -f symlinkName
ls -la <path> | grep "\->"
readlink -f symlinkName