source: ETALON/SPESO/analysis/mkSummary.sh @ 505

Last change on this file since 505 was 82, checked in by delerue, 10 years ago

Added SPESO analysis sh and awk files

  • Property svn:executable set to *
File size: 437 bytes
Line 
1#!/bin/tcsh -f
2
3echo "<HTML>" > summary.html
4echo "<title>" >> summary.html
5echo "SPESO data summary" >> summary.html
6echo "</title>" >> summary.html
7echo "<h1>" >> summary.html
8echo "SPESO data summary" >> summary.html
9echo "</h1>" >> summary.html
10echo "<table>" >> summary.html
11ls -d 201????? | grep -v -f skipDays.list | sort -rn | awk -f mkSummary.awk  >> summary.html
12echo "</table>" >> summary.html
13echo "</HTML>" >> summary.html
14
Note: See TracBrowser for help on using the repository browser.