*** empty log message ***
[arla.git] / tests / write2
blob90808c63739c7c796b08a6e2823916b606fb1d6b
1 #!/bin/sh
2 echo hopp > foo || exit 1
3 if test X`cat foo` != "Xhopp"; then exit 1; fi
4 echo hej > foo || exit 1
5 if test X`cat foo` != "Xhej"; then exit 1; fi
6 rm foo || exit 1