cleanNewMetaLight 249 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 #!/bin/bash if test $NEWMETA then for Dir in $(find -L $NEWMETA/* -type d -not -path $NEWMETA/ParamInfo* ) do rm ${Dir}/* done rm $AMDA_SPASE_INTERFACE/SPASE/* else echo "NEWMETA env var is not defined - source env.sh" fi