使用html按钮运行shell脚本
我想在网站上按下按钮时启动bash脚本。这是我的第一次尝试:
<button type="button" onclick="/path/to/name.sh">Click Me!</button>
但是没有运气。有什么建议么?
回答:
如Luke所述,您需要使用服务器端语言,例如php。这是一个非常简单的php示例:
<?phpif ($_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>
另存为myfilename.php
,并将其放置在装有php的网络服务器上的计算机上。可以使用asp,java,ruby,python,…来完成同一件事
以上是 使用html按钮运行shell脚本 的全部内容, 来源链接: utcz.com/qa/436120.html