in reply to Re^2: system command and formatting
in thread system command and formatting
It works for me.
split.plPHP file$bar=$ARGV[0]; $lak=`$bar`; print "$lak";
<?php $foo="ls"; $cmd="perl split.pl $foo"; $out=`$cmd`; print "$out"; ?>
Now the $out has the ls output. I think I understood your question. If not clarify me.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: system command and formatting
by Anonymous Monk on Feb 27, 2009 at 06:57 UTC | |
|
Re^4: system command and formatting
by sugar (Beadle) on Feb 27, 2009 at 06:59 UTC | |
by lakshmananindia (Chaplain) on Feb 27, 2009 at 08:38 UTC |