Skip to content

Instantly share code, notes, and snippets.

@kentfredric
Created September 6, 2016 09:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kentfredric/a1479acfc42f803f7f954ff22624bd21 to your computer and use it in GitHub Desktop.
Save kentfredric/a1479acfc42f803f7f954ff22624bd21 to your computer and use it in GitHub Desktop.
#!perl
for my $i (@INC) {
local $!;
my $exist = -e $i;
my $error = $!;
if ($error) {
print "Error reading $i, $error\n";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment