Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    
    ...
    
    exec $ENV{SHELL}
        or die "Failed to exec shell '$ENV{SHELL}'\n";
    
  2. or download this
    $ echo "PID=$$; test='$test'"
    PID=87533; test=''
    $ exec ./exec.pl 
    $ echo "PID=$$; test='$test'"
    PID=87533; test='TURE'