Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:01

0001 #!/bin/bash -l 
0002 
0003 msg="=== $BASH_SOURCE :"
0004 geometrys=$(perl -n -e 'm,geometry=(\S*), && print "$1\n" '  ../CSG/CSGDemoTest.sh)
0005 
0006 for geometry in $geometrys ; do  
0007    GEOMETRY=$geometry ./cxr_demo.sh 
0008    [ $? -ne 0 ] && echo $msg FAIL for geometry $geometry  && exit 1   
0009 done 
0010 
0011 exit 0 
0012 
0013