|
Last change
on this file since 1826 was 1719, checked in by cmv, 24 years ago |
|
Adapted to version 3.5 xephem cmv 22/10/2001
|
-
Property svn:executable
set to
*
|
|
File size:
673 bytes
|
| Line | |
|---|
| 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 | set log = `pwd`/compare.log
|
|---|
| 7 |
|
|---|
| 8 | rm -f $log; touch $log
|
|---|
| 9 |
|
|---|
| 10 | echo ======================= NOUVEAU REPERTOIRE >>& $log
|
|---|
| 11 | ls *.h >>& $log
|
|---|
| 12 | ls *.c >>& $log
|
|---|
| 13 |
|
|---|
| 14 | echo ======================= REPERTOIRE $dir >>& $log
|
|---|
| 15 | pushd $dir
|
|---|
| 16 | ls *.h >>& $log
|
|---|
| 17 | ls *.c >>& $log
|
|---|
| 18 | popd
|
|---|
| 19 |
|
|---|
| 20 | echo ======================= INCLUDE >>& $log
|
|---|
| 21 | foreach f ( *.h )
|
|---|
| 22 | echo ======================= $f >>& $log
|
|---|
| 23 | diff $f $dir/$f >>& $log
|
|---|
| 24 | end
|
|---|
| 25 |
|
|---|
| 26 | echo ======================= FICHIERS >>& $log
|
|---|
| 27 | foreach f ( *.c )
|
|---|
| 28 | echo ======================= $f >>& $log
|
|---|
| 29 | diff $f $dir/$f >>& $log
|
|---|
| 30 | end
|
|---|
| 31 |
|
|---|
| 32 | exit 0
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.