Last change
on this file since 1680 was 1680, checked in by cmv, 24 years ago |
script pour comparer les nouvelles versions cmv 11/10/01
|
-
Property svn:executable
set to
*
|
File size:
396 bytes
|
Rev | Line | |
---|
[1680] | 1 | #!/bin/csh
|
---|
| 2 | # Placez vous dans le repertoire ou vous avez
|
---|
| 3 | # mis le NOUVEAU code du libastro de Xephem.
|
---|
| 4 |
|
---|
| 5 | set dir = $DPCSOURCE/XephemAstroLib/
|
---|
| 6 |
|
---|
| 7 | rm -f compare.log; touch compare.log
|
---|
| 8 |
|
---|
| 9 | foreach f ( *.h )
|
---|
| 10 | echo ======================= $f >> compare.log
|
---|
| 11 | diff $f $dir/$f >> compare.log
|
---|
| 12 | end
|
---|
| 13 |
|
---|
| 14 | foreach f ( *.c )
|
---|
| 15 | echo ======================= $f >> compare.log
|
---|
| 16 | diff $f $dir/$f >> compare.log
|
---|
| 17 | end
|
---|
| 18 |
|
---|
| 19 | exit 0
|
---|
Note:
See
TracBrowser
for help on using the repository browser.