#!/bin/sh
echo hopp > foo || exit 1
if test X`cat foo` != "Xhopp"; then exit 1; fi
echo hej > foo || exit 1
if test X`cat foo` != "Xhej"; then exit 1; fi
rm foo || exit 1
