#!/bin/sh
# $Id$
for i in    ; do
  touch $i || exit 1
  test -f $i || exit 1
  rm $i || exit 1
done
