Help for this page

Select Code to Download


  1. or download this
    # ./path.pl
    Undefined subroutine &dbug::dbug called at ./path.pl line 56.
    
  2. or download this
    #!/usr/bin/perl
    
    ...
        opendir(my $dh, $dirname) or die "Not a directory";
        return scalar(grep { $_ ne "." && $_ ne ".." } readdir($dh)) == 0;
    }
    
  3. or download this
    #!/usr/bin/perl
    # $Id: dbug.pm $
    ...
            print LOGGER "$timestamp - [$component] $string";
            close(LOGGER);
    }