#! /bin/sh
#script show symbolic links
#syntax: symlinks /path
 if [ $# -lt 1 ] 
 then 
   actual=$(pwd)
  else 
   actual=$1
 fi 

find $actual -type l -exec ls -l {} \;

