Help for this page

Select Code to Download


  1. or download this
    `$myscript &`;
    
  2. or download this
    `sh -c '$myscript &'`;
    
  3. or download this
    my $pid = fork;
    die "Could not fork: $!" unless defined $pid;
    if (!$pid) {
       exec $myScript;
    }
    
  4. or download this
    [user@host]$ foo &
    
  5. or download this
    ------------
    :Wq
    Not an editor command: Wq