I am a newbie in perl programming. I've got a problem in following code:
<code lang="perl">
use File::Find;
find ( sub { print "$name\n" if -d }, $path );
</code>It prints only name of the $path if $path refers to a symlink. Is it possible to make it follow the link and show all the structure lying under the point that the link refers?
Alexey
_______________________________________________ Perl-Unix-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
