#!/bin/sh
# clear the contents of the wormbait share 
# and then repopulate the dummy directories and files

/bin/rm -rf /home/wormbait
cd /home/wormbait.src
find . -print | cpio -pdum /home/wormbait
chmod -R 777 /home/wormbait

