Help for this page

Select Code to Download


  1. or download this
    #!/bin/sh
    cd /home/you/cvs/stuff
    /usr/bin/cvs update
    /usr/bin/cvs diff
    
  2. or download this
    #!/usr/bin/perl
    my $CVS = '/usr/bin/cvs';
    ...
    chdir $DIR;
    print `$CVS update`;
    print `$CVS diff`;