Help for this page

Select Code to Download


  1. or download this
    which nzbget
    
  2. or download this
        my @args = ("/usr/local/bin/nzbget", $item);
        system(@args) == 0
            or die "Could not run '@args' ($?): $!\n";
    
  3. or download this
    my $args = "/usr/local/bin/nzbget $item"
    open("$args |") || die "Can't run '$args': $!\n";