#!/bin/sh
echo -n hej > foo || exit 1
if test `cat foo` != "hej"; then exit 1; fi
echo -n hopp >> foo || exit 1
if test `cat foo` != "hejhopp"; then exit 1; fi
rm foo || exit 1
