#!/bin/bash
CONC=10
BS=4096
COUNT=1024
while true; do
	for i in $(seq 1 ${CONC}); do
		dd if=/dev/zero of=zeroes_${i} oflag=direct bs=${BS} count=${COUNT} &
	done
	wait
done

