[PHP] How can you execute UNIX scripts from PHP

2003-02-18 Thread Rea_David
Hi everyone,

How can you execute UNIX scripts from PHP. If somebody could let me
know it would be great.

Thanks
Dave

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] How can you execute UNIX scripts from PHP

2003-02-18 Thread Kevin Waterson
This one time, at band camp,
[EMAIL PROTECTED] wrote:

 Hi everyone,
 
   How can you execute UNIX scripts from PHP. If somebody could let me
 know it would be great.

if you have a shell script called blah.sh

$script = 'blah.sh';

exec($script);
system($script); // my favourite

or if you like you could do

`blah.sh` // backticks


Kevin

-- 
 __  
(_ \ 
 _) )            
|  /  / _  ) / _  | / ___) / _  )
| |  ( (/ / ( ( | |( (___ ( (/ / 
|_|   \) \_||_| \) \)
Kevin Waterson
Port Macquarie, Australia

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] How can you execute UNIX scripts from PHP

2003-02-18 Thread Rea_David
Hi Kevin,

Thanks very much for your reply, but I'm having no luck with it. In
the test that I'm doing, I'm using the same code as you provided. It's on a
Solaris system  the permissions  ownership of the shell script is correct.
The shell script is also located in the same directory as the php file. All
the shell script is doing is creating a file  works grand when run from the
command line. Have you any ideas/thoughts on this? I'd really appreciate it!

Thanks 
Dave

-Original Message-
From: Kevin Waterson [mailto:[EMAIL PROTECTED]]
Sent: 18 February 2003 13:26
To: [EMAIL PROTECTED]
Subject: Re: [PHP] How can you execute UNIX scripts from PHP


This one time, at band camp,
[EMAIL PROTECTED] wrote:

 Hi everyone,
 
   How can you execute UNIX scripts from PHP. If somebody could let me
 know it would be great.

if you have a shell script called blah.sh

$script = 'blah.sh';

exec($script);
system($script); // my favourite

or if you like you could do

`blah.sh` // backticks


Kevin

-- 
 __  
(_ \ 
 _) )            
|  /  / _  ) / _  | / ___) / _  )
| |  ( (/ / ( ( | |( (___ ( (/ / 
|_|   \) \_||_| \) \)
Kevin Waterson
Port Macquarie, Australia

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] How can you execute UNIX scripts from PHP

2003-02-18 Thread Rea_David
My mistake Kevin, I did not put the full path of the shell script into the
$script variable.

Thanks very much for your help
Dave

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: 18 February 2003 14:21
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: RE: [PHP] How can you execute UNIX scripts from PHP


Hi Kevin,

Thanks very much for your reply, but I'm having no luck with it. In
the test that I'm doing, I'm using the same code as you provided. It's on a
Solaris system  the permissions  ownership of the shell script is correct.
The shell script is also located in the same directory as the php file. All
the shell script is doing is creating a file  works grand when run from the
command line. Have you any ideas/thoughts on this? I'd really appreciate it!

Thanks 
Dave

-Original Message-
From: Kevin Waterson [mailto:[EMAIL PROTECTED]]
Sent: 18 February 2003 13:26
To: [EMAIL PROTECTED]
Subject: Re: [PHP] How can you execute UNIX scripts from PHP


This one time, at band camp,
[EMAIL PROTECTED] wrote:

 Hi everyone,
 
   How can you execute UNIX scripts from PHP. If somebody could let me
 know it would be great.

if you have a shell script called blah.sh

$script = 'blah.sh';

exec($script);
system($script); // my favourite

or if you like you could do

`blah.sh` // backticks


Kevin

-- 
 __  
(_ \ 
 _) )            
|  /  / _  ) / _  | / ___) / _  )
| |  ( (/ / ( ( | |( (___ ( (/ / 
|_|   \) \_||_| \) \)
Kevin Waterson
Port Macquarie, Australia

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php