I am writing a script that uses backquotes and the ps-ef command to print the UID and command for all currently running processes.
#!/usr/bin/perl
use strict;
my $process = `ps -ef`;
while (<>);{
push @process = spilt (/\|/,$_);
print "Owner:[1] command:[8]
where did I go wrong? thanks, DJ
_________________________________________________________________
The new MSN 8: smart spam protection and 2 months FREE* http://join.msn.com/?page=features/junkmail
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]