source: Sophya/trunk/SophyaExt/XephemAstroLib/compare_with_xephem.csh@ 1680

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
RevLine 
[1680]1#!/bin/csh
2# Placez vous dans le repertoire ou vous avez
3# mis le NOUVEAU code du libastro de Xephem.
4
5set dir = $DPCSOURCE/XephemAstroLib/
6
7rm -f compare.log; touch compare.log
8
9foreach f ( *.h )
10 echo ======================= $f >> compare.log
11 diff $f $dir/$f >> compare.log
12end
13
14foreach f ( *.c )
15 echo ======================= $f >> compare.log
16 diff $f $dir/$f >> compare.log
17end
18
19exit 0
Note: See TracBrowser for help on using the repository browser.