in reply to Re^2: Unsuccessful stat on file test
in thread Unsuccessful stat on file test
So you are reading from the files listed on the command line and using their contents as the file names to stat. Perhaps you meant to do something like this instead:
for ( @ARGV ) { my @answer = filetest( $_ ); print @answer; }
|
|---|