Help for this page

Select Code to Download


  1. or download this
    sub checkdir {
        (-e $_[0] and -d $_[0]) or return 1;
    ...
    }
    ...
        unless (checkdir $_) {
    
  2. or download this
        unless (checkdir $_) {
    
  3. or download this
        if (-d $_) {
    
  4. or download this
        if (-d) {
    
  5. or download this
    sub printhash {
        for (0...$#_) {
    ...
    ...
    
                printhash %curmsg;
    
  6. or download this
                printhash %curmsg;
    
  7. or download this
                print "$_: $curmsg{$_}\n" for keys %curmsg;
    
  8. or download this
        while ($curline = <FH>) {
        if ($curline =~ /^Subject: /) {
    ...
            next;
        }
        }