summaryrefslogtreecommitdiffstats
path: root/usr.sbin/afs/src/tests/dd
blob: 1cdde421f21930d1c7adec95bfaef0149756ba5d (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/sh
# $KTH: dd,v 1.4 2000/03/18 05:30:18 assar Exp $
if test -r /dev/zero; then
  dd if=/dev/zero of=foo bs=1k count=20 >/dev/null 2>/dev/null || exit 1
  rm foo || exit 1
else
  echo "not running dd (you have no /dev/zero)"
fi