in reply to Re: Using Perl to detect RAM amount
in thread Using Perl to detect RAM amount

Now that's a start. I'll find the right scan command and do some reading. I've found an easy way to dig up commands that I can't alltogether remember goes like...
#!/usr/bin/perl -w use strict; use warnings; my($cmd) = 'conf'; foreach (split(/:/,$ENV{'PATH'})) { print qq[IN "$_"\n], (`ls ${\quotemeta $_}|grep $cmd`||"[none]\n"), + "--\n\n" }
--
Tommy Butler, a.k.a. TOMMY