Help for this page

Select Code to Download


  1. or download this
    my @a=("echo", "\$PATH");
    system(@a);
    
  2. or download this
    #!/usr/bin/perl -w
    
    ...
    
    my @script = ("env", "PATH=\"foo\"", "bash", "$path/test.sh");
    system (@script);