Help for this page

Select Code to Download


  1. or download this
                    my $pid;
                    if (!defined($pid = fork)) {
    ...
                        return; # I’m the parent
                    }
                    exec 'mozilla', "$url";
    
  2. or download this
               exec "mozilla -remote \"openurl($url,new-tab)\"";