Uncle google isn't helping with this one, perhaps my search terms are wrong.

Both of these two command variants print too much information. In some cases it's printing so many file names that it slows down the output. All I really need to see is the total number of files deleted (even if it's zero). Does anyone know if there's a way to do that with the RM command?

Code:
dir=/c/Users/vmAdmin/front-end-build/caches/*
echo Cleaning $dir;rm -rfv $dir;echo Cleaned $dir;echo


Code:
dir=/c/Users/vmAdmin/front-end-build/caches/*
echo Cleaning $dir;rm -rf $dir;echo Cleaned $dir;echo
_________________________
Tony Fabris