Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Hi I am unable to run the .sh file using my php code.

 Files:  index.php and .sh files are in the same directory.

What I have tried:

 echo shell_exec('sh shell_file.sh'); //Did not execute
 echo shell_exec('shell_file.sh'); //Did not execute
 echo exec('shell_file.sh'); //Did not execute

But when I run the shell_file.sh file manually it does execute.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
184 views
Welcome To Ask or Share your Answers For Others

1 Answer

Try like this:

What you need to do is call the file with a program. Call it with bash or sh as suggested in the comment:

echo shell_exec('sh /shell_file.sh');

Another option could be:

$contents = file_get_contents('/shell_file.sh');
echo shell_exec($contents);

I think the first option would be better however.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...