View Single Post
  #10 (permalink)  
Old 04-16-2008, 02:01 AM
trophaeum's Avatar
trophaeum trophaeum is offline
Admin
 
Join Date: Feb 2008
Posts: 1,380
Reputation: 10
trophaeum is on a distinguished road
Default

Quote:
Originally Posted by GeoffreyF67 View Post
Code:
$Count = rand(20,150);

$Command = 'dd if=/dev/urandom of="./downloads/' . $Title . '.wmv" bs=87615 count=' . $Count;

exec($Command);
Only works on Linux but it sure rocks Throw that into the app above and create a lot of files

G-Man
save yourself a LOT of cpu time and use /dev/random, no need for perfectly random files
Reply With Quote