On Mon, Nov 06, 2006 at 02:40:02PM +0100, hinko.kocevar at cetrtapot.si wrote: > Hello, > > I've been looking for a utility like this for some time and I finally > decided to code the solution by myself. > I've needed a way to generate files with same contents (eg. 16k file > with 0xFF). head dd bs=16384 count=1 < /dev/zero | tr '\0' '\377' Rich