Help for this page

Select Code to Download


  1. or download this
    chdir $wrPath;
    my $failed = system( "cvs diff >> $reportsPath/diffReport.txt" );
    if ( $failed ) {
        warn "cvs diff returned non-zero exit status $failed\n";
    }
    
  2. or download this
    use Cwd;
    
    ...
    ...
    
    chdir $origpath;  # after doing 'system( "cvs diff ..." )'