Help for this page

Select Code to Download


  1. or download this
    sub redirected_system
    {
    ...
            exec { $args[0] } @args or die "exec failed: $!";
        }
    }
    
  2. or download this
    sub hooked_system(&@)
    {
    ...
            exec { $args[0] } @args or die "exec failed: $!";
        }
    }