source: Sophya/trunk/SophyaLib/Mgr/objlist_chk.csh@ 3719

Last change on this file since 3719 was 1320, checked in by ansari, 25 years ago

comp auto objlist.list et MOD.o.list cmv 10/11/00

  • Property svn:executable set to *
File size: 418 bytes
RevLine 
[1320]1#!/bin/csh
2
3set dcvs
4foreach f ( `ls -1` )
5 if( -e $f/CVS ) set dcvs = ( $dcvs $f )
6end
7
8foreach d ( $dcvs )
9 echo ">>>>>>>>>> ${d}: diff ${d}.o.list objlist.list"
10 if( -e ${d}/${d}.o.list && -e $d/objlist.list ) then
11 diff ${d}/${d}.o.list ${d}/objlist.list
12 ### if( $status == 0 ) echo "... No differences"
13 ###else
14 ### echo "fichier(s) ${d}.o.list ou/et objlist.list inexistant(s)"
15 endif
16end
17
18exit 0
Note: See TracBrowser for help on using the repository browser.