* Use "strings </dev/urandom", not "strings /dev/urandom".

This commit is contained in:
Sam Hocevar
2007-01-03 21:53:03 +00:00
committed by sam
parent a69b8cc7ed
commit de9a7ef44d

View File

@@ -9,7 +9,7 @@ create()
rm -f /tmp/zzuf-random-$$
dd if=/dev/urandom of=/tmp/zzuf-random-$$ bs=1024 count=32 2>/dev/null
rm -f /tmp/zzuf-text-$$
strings /dev/urandom | dd bs=1024 count=32 of=/tmp/zzuf-text-$$ 2>/dev/null
strings </dev/urandom | dd bs=1024 count=32 of=/tmp/zzuf-text-$$ 2>/dev/null
}
check()