Write a script to display the name of those files (in the given directory) which are having multiple links.
echo -e -: DISPLAY FILES HAVING MULTIPLE LINKS :-" echo -e DIRECTROY PATH : \C" read dirpath ls -l $dirpath| tr -s " ""|" > flinks grep -v "|1|" flinks | cut -d"|" -f9 > fname echo -e " files having multiple in $dirpath are " cat fname OUTPUT *********** [04mca58@LINTEL 04mca58]$ sh mulink.sh DISPLAY FILES HAVING MULTIPLE LINKS DIRECTROY PATH : .. files having multiple in .. are DATA DESKTOP MAIL SCRIPT DISPLAY FILES HAVEING MULTIPLE LINKS DIRECTROY PATH : ../DESKTOP files having multiple in ../DESKTOP are AUTOSTART