#!/bin/sh
VFILES=`ls | egrep '^v[0-9]+$'`
if test "${VFILES:-none}" != "none" ; then
    echo "rm -f " $VFILES
    rm -f $VFILES
fi

