View Single Post
Old Jun 4th, 2004, 1:45 PM   #1
Coume
Newbie
 
Join Date: Jun 2004
Posts: 2
Rep Power: 0 Coume is on a distinguished road
Hello,

I tried to do a small perl script to check if amule is running and if it's not to launch it, but that's not working...
I never ever programmed in perl before, it must be a dumb error, but I can't find it

any idea?
#!/usr/bin/perl
$cmd="ps -A | grep amule | grep -v grep";
$output=qx/$cmd/;
if ($output!=~m/$amule/) {
qx/amule/;
}

Thxs
Ludo
Coume is offline   Reply With Quote