View Single Post
Old 08-01-2006, 11:16 PM  
Quickdraw
Confirmed User
 
Join Date: Mar 2004
Location: → → →
Posts: 1,717
If you can use PHP, here is quick dirty way to do it

PHP Code:
<?php
$file 
file("urls.txt");

// Strips dupes if you need, comment out if you do not need this
$temp array_unique($file);

//Shuffles the deck or randomizes :)
shuffle($temp);
//Prints each line 
foreach($temp as $value)
   {
   echo 
$value;
   }
exit;
?>
Quickdraw is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote