#!/bin/bash res=0 for i in /sol001/*.yaml ; do echo "Puccini: Validating file $i..." puccini-tosca parse $i if [ $? == 1 ] ; then res=1 fi done exit $res