#!/bin/sh
# $Id$
touch foo || exit 1
mv foo bar || exit 1
test -f foo && exit 1
test -f bar || exit 1
rm bar || exit 1
