pretty

Saturday, April 28, 2012

Generate testfiles with dd


#!/bin/bash
for i in {7..12}
do
dd if=/dev/zero of=test$i.bin bs=1000 count=1
done

No comments:

Post a Comment