#!/bin/sh
# This script is an infinite loop which repeatedly deletes
# all *- backup files in an assortment of directories.  It
# also shows the output of "df ." after each try.
df .
while true
do	/bin/rm -f */*- ../*/*- $HOME/*/*-
	df .
	sleep 10
done
