#!/bin/bash

for n in $(seq 10);
do
    dd if=/dev/urandom of=tmp/file$n count=204800
done
