我想在 .bashrc 中执行一个 bash shell 脚本php
。用于创建目录的 shell 脚本。但是当我.php
在服务器中运行文件时它没有创建。
上面我用过的php代码------
<html>
<?php
echo exec('./home/biswajit/lh.sh')
?>
thanx
</html>
对应lh.sh
文件的代码是-----
#!/bin/bash
cat <<EOF | /home/biswajit/matlab -nodesktop -nosplash -nodisplay /> /home/biswajit/matlab_result.out
mkdir('/home/biswajit/Done');
disp('directory created');
exit
EOF