in reply to backticks are echoing stderr

redirect stderr to a file, or devnull (File::Spec->devnull();) something like
require File::Spec; my $devnull = File::Spec->devnull(); my $cmd = `cleartool ls -l $fname 2>$devnull`;

Replies are listed 'Best First'.
Re^2: backticks are echoing stderr
by nsteiner (Novice) on Aug 26, 2008 at 08:10 UTC
    Thanks !!
    It works.
    This is the first time I posted a question here, and already it was worth it !
    Keep up the good work :)