Re: File Size Script Help - Working Version

2012-01-03 Thread Brandon McCaig
Hello: On Sat, Dec 31, 2011 at 02:56:50AM +0200, Igor Dovgiy wrote: > $filedata{$_} = [$filesize, $filemd5]; *snip* > my ($size, $md5) = @{ $filedata{$filename} }; Alternatively, store a nested hash-reference: $filedata{$File::Find::name} = { md5 => $file_md5, size => $file_s

Re: tinyMCE as web editor for editing code?

2012-01-03 Thread Shlomi Fish
Hi Rajeev, On Mon, 2 Jan 2012 20:54:01 -0800 (PST) Rajeev Prasad wrote: > Hello, > > Has anyone ever used, tinyMCE as web based editor (to run inside the browser) > to edit the perl/php/shell scripts on the server? I am looking for some > direction and advice? I don't know how possible it is

Re: File Size Script Help - Working Version

2012-01-03 Thread Igor Dovgiy
Hi folks, happy new year to everyone. ) John, you're right, of course. ) The filenames in nested directories could well overlap, and using $File::Find::name would be safer. Didn't think of that as a big problem, though, as original script (with 'opendir') ignored all the nested folders overall. J