Merging release 2.0 branch with CVS trunk

r2601 | ffr | 2008-05-30 10:26:57 +1000 (Fri, 30 May 2008) | 2 lines
This commit is contained in:
Ferdi Franceschini
2008-05-30 10:26:57 +10:00
committed by Douglas Clowes
parent 4a937e1608
commit 0749b0effa
125 changed files with 8541 additions and 1810 deletions

View File

@@ -0,0 +1,13 @@
#!/bin/sh
# Strip all horizontal and vertical whitespace from the galil controller programs
# and compare md5 sums.
instrument=${HOSTNAME#ics1-}
i=1
for f in controller*.md5
do
name=`basename $f .md5`
echo -n "$name "
./getDMCprog.tcl -host mc${i}-$instrument -port pmc${i}-$instrument |tr -d '[:space:]'|md5sum -c $f 2> /dev/null
let i++
done