Perl recursive loop symbolic link final destination using Unix readlink command
Snippet obtained from Stackoverflow courtesy of [Loki Astari](http://stackoverflow.com/a/130428)
Copy this code and paste it in your HTML
#!/usr/bin/perl
use strict;
while(chomp(my $file = <>)) {
while(-l $file)
{
}
}
Report this snippet
Comments
Subscribe to comments