Ok, so i've made this:
Code:
clear
for (( i = 0 ; i <= 1000; i++ )) do
`dd if=/dev/zero of=/home/import/1Mfile$i bs=1M count=1`
done
rm -f /home/import/*
But how can I hide the output?, I execute the script with "time ./<script>".
But how to suppress the output from 'dd'?, I tried adding '> /dev/null' but that didn't work.
Any ideas?, I'm new at this kind of stuff 
* EDIT *
Ok, nvm. Found it.
Code:
`dd if=/dev/zero of=/home/import/1kfile$i bs=1KB count=1 2>/dev/null`
Had to add a '2'. Typical, i searched/tried for a while, didn't find it, and the moment I ask for help I found the solution 
Have another question:
How can I get the time inside a script?
So something like this:
Code:
BEGIN TIME
for (( i = 0 ; i <= 1000; i++ )) do
`dd if=/dev/zero of=/home/import/1kfile$i bs=1KB count=1 2>/dev/null`
done
END TIME
echo TIME
BEGIN TIME2
for (( i = 0 ; i <= 10; i++ )) do
`dd if=/dev/zero of=/home/import/1kfile$i bs=500KB count=1 2>/dev/null`
done
END TIME2
echo TIME2