Help for this page

Select Code to Download


  1. or download this
    use constant DIR => '~/';
    
  2. or download this
    sub run_system {
        my (@params) = @_;
    ...
        system(@params) == 0
            or die "System command @{[join ' ', @params]} failed: returned
    + @{[ $? >> 8 ]}; stopped";
    }