Posted by SM Ryan on 11/18/05 22:49
"comp.lang.tcl" <phillip.s.powell@gmail.com> wrote:
# The TCL command I am using will do a command-line action on a PHP
# script:
#
# set cannotRunPHP [catch {
# eval "exec php -q $root/scripts/info/php/info.php"
# } errMsg]
As a side note, you don't need to use eval in this command,
and it can actually fail if $root has any spaces. Instead
you can
set cannotRunPHP [catch {
exec php -q $root/scripts/info/php/info.php
} errMsg]
--
SM Ryan http://www.rawbw.com/~wyrmwif/
Where do you get those wonderful toys?
Navigation:
[Reply to this message]
|