- or download this
#!usr/bin/perl
use strict;
- or download this
# This is a program which reads in a list of file names from the comma
+nd
# line and prints which files are readable, writable and/or executable
+,
# and whether each file exists.
- or download this
while ($i < scalar(@ARGV)) {
open(MYFILE, $ARGV[$i]) or die("Error: cannot open file '$ARGV[$i]
+'\n");
- or download this
print "$ARGV[$i] is readable!\n" if -r MYFILE;
print "$ARGV[$i] is writable!\n" if -w MYFILE;
print "$ARGV[$i] is executable!\n" if -x MYFILE;
print "$ARGV[$i] exists!\n" if -e MYFILE;
$i++;
- or download this
} # end while
- or download this
#!/usr/bin/perl
...
}
__END__