Create a text file of particular size
The following creates a 4k text file:
cat /usr/share/dict/words | tr -d '\n' | dd of=/var/tmp/out bs=1k count=4
The following creates a 4k text file:
cat /usr/share/dict/words | tr -d '\n' | dd of=/var/tmp/out bs=1k count=4
CreateRandomTextFile (last edited 2010-02-22 11:16:11 by DavidKeen)