Help for this page

Select Code to Download


  1. or download this
    $/ = undef;
    open( FILE, "somescript.pl" ) || die "can't open: $!"
    ...
    if( $@ ) {
      print STDERR "Error: yada yada\n";
    }
    
  2. or download this
    $ARGV[0] = "whatever";
    do 'somescript.pl'