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

Last change on this file since 1719 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
5set dir = $DPCSOURCE/XephemAstroLib/
6set log = `pwd`/compare.log
7
8rm -f $log; touch $log
9
10echo ======================= NOUVEAU REPERTOIRE >>& $log
11ls *.h >>& $log
12ls *.c >>& $log
13
14echo ======================= REPERTOIRE $dir >>& $log
15pushd $dir
16ls *.h >>& $log
17ls *.c >>& $log
18popd
19
20echo ======================= INCLUDE >>& $log
21foreach f ( *.h )
22 echo ======================= $f >>& $log
23 diff $f $dir/$f >>& $log
24end
25
26echo ======================= FICHIERS >>& $log
27foreach f ( *.c )
28 echo ======================= $f >>& $log
29 diff $f $dir/$f >>& $log
30end
31
32exit 0
Note: See TracBrowser for help on using the repository browser.