gpt4 book ai didi

php - 带参数的 openvpn-install 脚本

转载 作者:太空宇宙 更新时间:2023-11-04 03:45:19 24 4
gpt4 key购买 nike

嘿,我正在尝试使用以下脚本创建 openvpn 客户端 https://github.com/Nyr/openvpn-install来 self 的网络服务器。

我已经正确配置了 SSH2 API,可以使用它向我的 Linux 服务器发送命令。

我还可以验证该脚本是否有效。

我只是不知道如何在单个命令中运行带有 2 个参数的脚本。

我尝试逐行执行参数,但没有成功;

echo $ssh->exec("bash openvpn-install.sh");
echo $ssh->exec("1");
echo $ssh->exec("randomid12345");

我也尝试过命令bash openvpn-install.sh 1 12356

以及 bash openvpn-install.sh -1 -12356

但这也不起作用。

非常感谢您的帮助!

最佳答案

而不是这个:

echo $ssh->exec("bash openvpn-install.sh");
echo $ssh->exec("1");
echo $ssh->exec("randomid12345");

这个怎么样?:

$ssh->write("bash openvpn-install.sh\n");
echo $ssh->read('[whatever]');
$ssh->write("1\n");
echo $ssh->read('[whatever]');
$ssh->write("randomid12345\n");
echo $ssh->read('[whatever]');

关于php - 带参数的 openvpn-install 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28406182/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com