in reply to SUID check

I tryed using PRE tags etc.. and the CODE tags are there to solve the < > issues. But still no output. Is there a way I can store the output in a variable? or redirect STDOUT?

Replies are listed 'Best First'.
Re^2: SUID check
by Argel (Prior) on Aug 04, 2006 at 22:39 UTC
    my $out = `$DIFF $setuidtoday $setuidyest`; print $out;
    You might want to try:
    use Data::Dumper; my $out = `$DIFF $setuidtoday $setuidyest`; print '<pre>', Data::Dumper->Dump([$out],['out']), '</pre>';