|
Posted by J.O. Aho on 10/09/07 18:49
Henk Oegema wrote:
> Question: How to I pass those 3 variables from the script, to 3 variables in
> Linux (Debian).
>
> Something like:
> asterisk:~# day=${CURL(http://localhost/uptime/uptime.php)} (?????)
> asterisk:~# hour=...........
> asterisk:~# minute=.........
You would need to use
export day=`php /path/to/yout/file/uptime.php`
if you use it this way, you need to make the script to take arguments, so that
you can get the day, hour and minute alone. Don't forget to echo about the value.
Otherwise you can use a shell script with awk that can read out the values and
then set each variable, but then you could skip using php, as you get the
uptime from uptime command directly.
--
//Aho
Navigation:
[Reply to this message]
|