Help for this page

Select Code to Download


  1. or download this
    0  'gup.pl ; cd /and/updates'
    1  'ck.pl; cd /and/release/runtime'
    
  2. or download this
     my ($run_cmd, $chdir_cmd) = split(';',$run[$element],2);
    
  3. or download this
    DB<3> x $chdir_cmd
    0  ' cd /and/updates'
    
  4. or download this
    $chdir_cmd =~ s/'/"/g;
    
  5. or download this
    sub ch_dir
    {
    ...
        chdir($cmd) || die $!;
    }
    
  6. or download this
    my $ cmd = "cd /and/updates";
    ch_dir($cmd);