博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
web页面调用Linux脚本,apache – 如何从Web服务器调用本地shell脚本...
阅读量:4954 次
发布时间:2019-06-12

本文共 632 字,大约阅读时间需要 2 分钟。

This tutorial looks good,但有点简短.

我安装了apache.如果你不这样做:sudo apt-get install apache2.

cd /usr/lib/cgi-bin

# Make a file and let everyone execute it

sudo touch test.sh && chmod a+x test.sh

然后将一些代码放在文件中.例如:

#!/bin/bash

# get today's date

OUTPUT="$(date)"

# You must add following two lines before

# outputting data to the web browser from shell

# script

echo "Content-type: text/html"

echo ""

echo "

Demo"

echo "Today is $OUTPUT

"

echo "Current directory is $(pwd)

"

echo "Shell Script name is $0"

echo ""

如果一切顺利(就像它对我而言)你应该看到……

Today is Sun Dec 4 …

Current directory is /usr/lib/cgi-bin Shell

Shell Script name is /usr/lib/cgi-bin/test.sh

转载地址:http://wuyhp.baihongyu.com/

你可能感兴趣的文章
Linux系统下Memcached的安装以及自启动
查看>>
程序员,如何在工作中崭露头角?
查看>>
P4实验问题 解决python模块导入
查看>>
函数基础
查看>>
linux安装配置阿里云的yum源和python3
查看>>
spring-boot2.x Application properties属性配置
查看>>
C/C++中const关键字 2014-03-20 15:30 401人阅读 评论(0) 收藏...
查看>>
grep的用法
查看>>
stm32-浅谈IIC
查看>>
Nginx 重新加载日志配置
查看>>
R 内存管理问题
查看>>
.net后台防止API接口被重复请求
查看>>
数位dp 简单入门
查看>>
使用CAShapeLayer与UIBezierPath画出想要的图形
查看>>
echart
查看>>
基本排序(冒泡,选择,插入,希尔)
查看>>
Centos 7安装protobuf3.6.1
查看>>
Git branch (分支学习)
查看>>
高阶函数定义
查看>>
最新首发Eclipse+CDT+android-ndk写纯c++安卓应用(附openGL Es)
查看>>