|
Meetings /
CommandLineBingoHistory25th April 2007Even though they weren't presented at the time, heres the writeups of the commands we chose: Reece Arnott: calamaris 11th April 2007Here are the commands for the first Command Line Bingo. Please choose one of the following commands and be prepared to say something about it at the LUG meeting on the 11th of April. Wow, there's some interesting looking commands in there. Bob Brown: Chris Edwards: Keith Duthie: Reece Arnott: Later on, come back here and update this page to show which command you picked and put a bit of a blurb in for it. By the way, here's the PHP script I used to select random commands:
<?php
$commands = glob('/usr/bin/*');
echo 'Random command: '.$commands[rand(0,count($commands))]."\n";
?>
|