gpt4 book ai didi

javascript - 如何从 HTML 页面运行 shell 脚本?

转载 作者:行者123 更新时间:2023-12-03 11:23:33 27 4
gpt4 key购买 nike

我想在 html 页面 input.html 上制作一个按钮和一个输入框,单击时应执行 shell 脚本 test.sh。 shell 脚本应该将该输入框字符串作为参数。 shell脚本创建一个html文件out.html(我已经创建了shell脚本,当它接受输入字符串时,会生成一个html文件),然后我想在原始html页面上显示该文件input.html.

我该怎么做?假设一切都在本地运行,即这里没有服务器。

最佳答案

您可能想尝试从服务器端语言(例如 PHP)加载它

<?php
if ($_GET['run']) {
# This code will run if ?run=true is set.
exec("/path/to/name.sh");
}
?>

<!-- This link will add ?run=true to your URL, myfilename.php?run=true -->
<a href="?run=true">Click Me!</a>

关于javascript - 如何从 HTML 页面运行 shell 脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27012272/

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