Help for this page

Select Code to Download


  1. or download this
    perl -MErrno=ENOENT -le'
       $found = -e shift;
       die("stat: $!\n") if !defined($found) && $! != ENOENT;
       print($found ? "found" : "not found");
    ' file