"#!/usr/bin/perl
use strict;
&smash("/archive");
sub smash {
my $dir = shift;
opendir DIR,
$dir or return;
my @contents = map "$dir/$_", sort grep !/^\.\.?$/, readdir DIR;
closedir DIR;
foreach (@contents) {
next unless !-l && -d;
&smash($_);
}
}" forums.devshed.com
November 17, 2008
November 14, 2008
November 8, 2008
How do I install Perl modules?
"Installing a new module can be as simple as typing perl -MCPAN -e 'install Chocolate::Belgian'" cpan.org
November 2, 2008
NOTSOLVED: How to connect Wii via ad-hoc with notebook and share lan?
"Create a secure ad hoc WiFi network on Windows Vista*" intel.com
Subscribe to:
Posts (Atom)