Last change
on this file since 4024 was 4017, checked in by cmv, 14 years ago |
fichiers de Xephem 3.7.5 update, cmv 21/09/2011
|
-
Property svn:executable
set to
*
|
File size:
838 bytes
|
Rev | Line | |
---|
[1680] | 1 | #!/bin/csh
|
---|
| 2 |
|
---|
[1894] | 3 | if( "$1" == "-h" ) then
|
---|
| 4 | echo 'Placez vous dans le repertoire ou vous avez'
|
---|
| 5 | echo 'mis le NOUVEAU code du libastro de Xephem.'
|
---|
[2551] | 6 | echo '> $SOPHYASOURCE/XephemAstroLib/compare_with_xephem.csh'
|
---|
[1894] | 7 | exit -1
|
---|
| 8 | endif
|
---|
| 9 |
|
---|
[2551] | 10 | set dir = $SOPHYASOURCE/XephemAstroLib/
|
---|
[4017] | 11 | set log = /tmp/compare.log
|
---|
[1680] | 12 |
|
---|
[1719] | 13 | rm -f $log; touch $log
|
---|
[1680] | 14 |
|
---|
[2818] | 15 | echo ======================= NOUVEAU REPERTOIRE `pwd` >>& $log
|
---|
[1719] | 16 | ls *.h >>& $log
|
---|
| 17 | ls *.c >>& $log
|
---|
| 18 |
|
---|
| 19 | echo ======================= REPERTOIRE $dir >>& $log
|
---|
| 20 | pushd $dir
|
---|
| 21 | ls *.h >>& $log
|
---|
| 22 | ls *.c >>& $log
|
---|
| 23 | popd
|
---|
| 24 |
|
---|
| 25 | echo ======================= INCLUDE >>& $log
|
---|
[1680] | 26 | foreach f ( *.h )
|
---|
[1719] | 27 | echo ======================= $f >>& $log
|
---|
| 28 | diff $f $dir/$f >>& $log
|
---|
[1680] | 29 | end
|
---|
| 30 |
|
---|
[1719] | 31 | echo ======================= FICHIERS >>& $log
|
---|
[1680] | 32 | foreach f ( *.c )
|
---|
[1719] | 33 | echo ======================= $f >>& $log
|
---|
| 34 | diff $f $dir/$f >>& $log
|
---|
[1680] | 35 | end
|
---|
| 36 |
|
---|
[1895] | 37 | echo "Resultat dans le fichier $log"
|
---|
| 38 |
|
---|
[1680] | 39 | exit 0
|
---|
Note:
See
TracBrowser
for help on using the repository browser.