#!/bin/bash

LIST=`find ./mcad/ -type f -printf "%f\n"`
for ITEM in $LIST
do 

echo "Delete: $ITEM"
rm "$ITEM"

done

