Extracting files with multiple links-perl

i want to write a perl script that gets/displays all those files having multiple links (in current directory)

hi guptesanket
cant you do it with awk
#!/usr/bin/awk -f
$2>2{print $8}

I know it with awk ! But I want to do it with perl. I know the logic, that I have to check if the link column is greater than 2, then i have to display it.. but i dont know how to do it with perl.
How to get the link column.. in perl ?

hello
then take it with perl --->
#perl -wln -e 'split(/\s+/);print $[7] if $[1]>1;'

Ow.. You are good.. Thanks a lot man.. That helped !