User:Caleb Cooper/sandbox: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
Line 39:
 
;some heading
:<syntaxhighlight lang=bash class="blue-white">
#!/bin/bash
this
fileCount=800000
that
b=0
the other
while [ $b -le $fileCount ]
do
echo B = $b
dd if=/dev/urandom of=/mnt/nfs/file$b.txt bs=2k count=1
((b++))
done
</syntaxhighlight>