in reply to Re: Re: Re: file (mp3) list shown on website as links
in thread file (mp3) list shown on website as links
However, if you look right at the bottom, you'll see a snippet like:sub wanted { /^\.nfs.*$/ && (($dev,$ino,$mode,$nlink,$uid,$gid) = lstat($_)) && int(-M _) > 7 && unlink($_) || ($nlink || (($dev,$ino,$mode,$nlink,$uid,$gid) = lstat($_))) && $dev < 0 && ($File::Find::prune = 1); }
which is really what you want to copy...sub wanted { -l && !-e && print "bogus link: $File::Find::name\n"; }
Tony
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Re: file (mp3) list shown on website as links
by ichimunki (Priest) on Dec 31, 2000 at 18:17 UTC | |
by salvadors (Pilgrim) on Dec 31, 2000 at 22:01 UTC |