Re: Execute Linux commands from controller

2010-09-24 Thread Andrei Mita
And also try with passthru. On Fri, Sep 24, 2010 at 2:53 PM, euromark wrote: > yours is probably related to > > http://groups.google.com/group/cake-php/browse_thread/thread/c8665b6c098e2059 > > not having the "right" to execute this as apache script (having group > www-data) > > > On 24 Sep., 13:

Re: Execute Linux commands from controller

2010-09-24 Thread euromark
yours is probably related to http://groups.google.com/group/cake-php/browse_thread/thread/c8665b6c098e2059 not having the "right" to execute this as apache script (having group www-data) On 24 Sep., 13:44, Urs wrote: > I am trying to execute the script scriptos.sh : > > #!/bin/bash > ssh t...@1

Re: Execute Linux commands from controller

2010-09-24 Thread Urs
I am trying to execute the script scriptos.sh : #!/bin/bash ssh t...@192.168.1.30 "cat /proc/version | sed 's/ //g' | cut -d'(' - f4 | cut -c1-6" > osdetails cat osdetails Here, I m finding the type of OS and echoing it.. I m calling the script by : exec('../shellscripts/scriptos.sh', $os); If

Re: Execute Linux commands from controller

2010-09-21 Thread Andrei Mita
Can you give us an example of what are you trying to do? I have developed in the past a small network monitor app and I didn't had very nice experiences with running commands. Some work great, some can crash your app due to execution time. On Wed, Sep 22, 2010 at 7:33 AM, Urs wrote: > Thanks A

Re: Execute Linux commands from controller

2010-09-21 Thread Urs
Thanks Andrel & Skimmas. This worked for the basic commands.. Any idea how to execute server login commands such as ssh & scp? Regards, Arjun Urs On Sep 20, 3:53 pm, Andrei Mita wrote: > I don't know if CakePHP has something special in place for executing > commands but exec and passthru will de

Re: Execute Linux commands from controller

2010-09-20 Thread skimmas
I think that what you are looking for is the php command exec() http://php.net/manual/en/function.exec.php On Sep 20, 11:10 am, Urs wrote: > Hi.. > > How can we execute linux commands from the controller? > > like: > Example1: cat file1.txt > Example2: ifconfig | grep eth | awk {'print $1'} > >

Re: Execute Linux commands from controller

2010-09-20 Thread Andrei Mita
I don't know if CakePHP has something special in place for executing commands but exec and passthru will definitely work: http://www.php.net/manual/en/ref.exec.php On Mon, Sep 20, 2010 at 1:10 PM, Urs wrote: > Hi.. > > How can we execute linux commands from the controller? > > like: > Example1:

Execute Linux commands from controller

2010-09-20 Thread Urs
Hi.. How can we execute linux commands from the controller? like: Example1: cat file1.txt Example2: ifconfig | grep eth | awk {'print $1'} Plz help.. Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message beca