#! /bin/bash
if [ $1 ]; then
   if [ -e $1 ]; then
      find $1 -type f -exec scrub -r --no-signature {} \;
   fi
else
   echo "Recursive shred needs a filepath as an argument"
   exit 1
fi
