summaryrefslogtreecommitdiffstats
path: root/usr.sbin/afs/src/tests/write2
blob: 8d15d9a7a95bf0653f9956f4afe174e87fabf1bd (plain) (blame)
1
2
3
4
5
6
#!/bin/sh
echo hopp > foo || exit 1
if test `cat foo` != "hopp"; then exit 1; fi
echo hej > foo || exit 1
if test `cat foo` != "hej"; then exit 1; fi
rm foo || exit 1