It really does not exist anywhere?
authorlace <>
Tue, 20 Jun 2006 19:37:19 +0000 (19:37 +0000)
committerlace <>
Tue, 20 Jun 2006 19:37:19 +0000 (19:37 +0000)
bin/shuffle [new file with mode: 0755]

diff --git a/bin/shuffle b/bin/shuffle
new file mode 100755 (executable)
index 0000000..0ff2cad
--- /dev/null
@@ -0,0 +1,7 @@
+#! /usr/bin/perl
+# $Id$
+
+use strict;
+use warnings;
+
+print splice(@ARGV,int(rand(@ARGV)),1)."\n" while @ARGV;