in reply to Re: Shell Commands executed in perl script
in thread Shell Commands executed in perl script
Man... you saved me:
$sh = Shell->new;
$Shell::raw='TRUE';
my $EXISTS_= $sh->java("-classpath bpjt-v2.1-3.jar:pmpclient.jar com.mycompany.clients.FilterWithAttributes $CNUM_ID manager");
my $CNUM_MNGR = $sh->echo("\"$EXISTS_\" | grep mng: | gawk -F \",\" \'\{ print \$1 \}\' | gawk -F \"=\" \'\{ print \$2 \}\'");
Thanks, a lot!