how to run a .sh file from php?

后端 未结 3 1660
孤城傲影
孤城傲影 2020-11-30 10:17

I am trying to run a shell script using php

shell script ( /home/scripts/fix-perm.sh ) is in the same server

this is the code that i am trying

<         


        
相关标签:
3条回答
  • 2020-11-30 10:35

    Shell exec takes a string which needs to be an actual command. You are now passing it a filepath. This is not interpreted as "execute the file at this path". You could do several things.

    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 /home/scripts/fix-perm.sh');
    

    Another option could be:

    $contents = file_get_contents('/home/scripts/fix-perm.sh');
    echo shell_exec($contents);
    

    I think the first option would be better however.

    It is important to note that all commands for executing external programs expect actual commands and not a filepath or something else. This goes for shell_exec, exec, passthru and others.

    0 讨论(0)
  • 2020-11-30 10:35

    I am not sure but you can try using chmod +x /home/scripts/fix-perm.sh on server at the first then try...

    0 讨论(0)
  • 2020-11-30 10:53

    first you need to make sure the file has the right permissions

    on your server chmod u+x /home/scripts/fix-perm.sh

    then you run : echo shell_exec('sh /home/scripts/fix-perm.sh');

    or if you want to output the results into a txt file:

    shell_exec('sh /home/scripts/fix-perm.sh > /home/scripts/log.txt &');

    0 讨论(0)
提交回复
热议问题