I have a php script (functions.inc):
<?php
function exec_mount_secured_bucket(){
exec("/ilantest/testscript.sh");
}
?>
I would like to run that function from inside the shell, normally to run the script using php i would do:
php function.inc
But I want to call a certain function from that function file.
How to do it ?
Thanks.