Help for this page

Select Code to Download


  1. or download this
    chdir $the_directory
        or die "Couldn't chdir to $the_directory: $!";
    opendir(D, ".")
    ...
        # other logic later...
    }
    closedir D;
    
  2. or download this
    chdir $the_directory
        or die "Couldn't chdir to $the_directory: $!";
    opendir(D, ".")
    ...
    {
        # whatever...
    }