#!/bin/bash # Copyright (c) 2015 ARM Limited. All rights reserved. echo echo "Creating report" echo echo ' ' > results/index.xml for f in $(find ./test -name *.xml); do cp $f results name=$(basename $f) echo "">> results/index.xml done echo '' >> results/index.xml echo echo "Report created to results/index.xml (outputs html)" echo