On Mon, Sep 05, 2005 at 03:29:18PM +0200, Alessandro Marca wrote:
argh! il post in html!!!!
argh!
vergognati!!!!
riposta, please..
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> <title></title> </head> <body bgcolor="#ffffff" text="#000000"> bsf funzionante; ho fatto questo script brutale per le modifice necessarie da php 4.1 a 4.2 e superiori:<br> <br> #!/usr/bin/perl<br> <br> foreach $path (@ARGV) {<br> process($path);<br> }<br> <br> sub process {<br> my $path = shift(@_);<br> if ( -d $path) {<br> opendir($dir, $path) || die "can't opendir $some_dir: $!";<br> my @files = grep { /^[^.]/ } readdir($dir);<br> foreach $file (@files){<br> process("$path/$file");<br> }<br> closedir $dir;<br> } elsif ( -T $path) {<br> print "$path ... ";<br> substitute($path, 'fh00');<br> print "done.";<br> }<br>