Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在通过 PHP 运行 SSH2 命令,并尝试链接命令以回答我运行的 bash 脚本中的密码提示。
wget url-to-bash-script bash name-of-file.sh
在此之后它会提示
MySQL Password:
和:
Retype password:
然后它将继续安装 LAMP 的软件包
我尝试过这样的事情,但没有运气;
$ssh->exec("wget URL;bash installLAMP.sh;密码;密码");
谢谢!
您可能想要使用的是期望
以下是一些有关如何使用它的示例:
http://www.thegeekstuff.com/2010/10/expect-examples/