in reply to Unable to resolve links...

is your file list (in the file) the bare and unadorned filename?..as surely there's a difference when filename supplied by hand and that which comes in read from the file. when you manually hardcode a filename, is it single quoted or such, so that perl doesn't do any (helpful) evaluation on your behalf?
the hardest line to type correctly is: stty erase ^H

Replies are listed 'Best First'.
Re^2: Unable to resolve links...
by czech (Sexton) on Nov 05, 2010 at 19:04 UTC
    Changing the double quotes to single quotes in the hardcoded string has no effect. The hardcoded string still succeeds. The read from the file still fails. Is there a way to expose control characters? Perhaps I can use od on the file. Thanks for your reply. Corwin
      on unix/linux/cygwin you can "cat -vet filename" to see special characters. control characters will show up as carret ^ followed by a capital letter.
      the hardest line to type correctly is: stty erase ^H