#! /bin/sh # # Check chip status on all dcs boards (chambers) in SM # By C.Lippmann # . _setup.sh echo "Reading states of all HCMs in SM ..." for P in $POS_LIST ; do ./rstate_quick.pl $P 0 > temp_rstate_quick_$P 2>&1 & done wait for P in $POS_LIST ; do cat temp_rstate_quick_$P rm -f temp_rstate_quick_$P done date echo "Finished." #EOF