Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-10 07:49:33

0001 #!/bin/bash -l 
0002 
0003 msg="=== $FUNCNAME : "
0004 
0005 arg=${1:-tab} 
0006 
0007 if [ "$arg" == "tab" -o "$arg" == "tab_water" ]; then
0008     ./cxr_grab.sh $arg --rst
0009 else
0010     echo $msg unexpected arg $arg 
0011 fi 
0012 
0013 
0014 
0015