码迷,mamicode.com
首页 > Web开发 > 详细

Shell编程WEB界面展示实践

时间:2020-02-12 18:57:03      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:aci   www   inf   bing   ddr   info   脚本   ip add   test   

操作系统:win7

虚拟机:Virtual box with Ubuntu13.10

WEB服务器: Nginx

WEB服务器发布目录:/usr/local/nginx/html/c 

测试文件:list.txt

技术图片

步骤:

1.新建一个shell脚本文件auto_html.sh.编辑内容如下:

#!/bin/bash
# created by bing

HTML=index.html
cat >$HTML <<EOF                            #HTML格式

<html>
<head>
<title>this is a test page[A]</title>
</head>
<body>
<table border="1" width="1000" cellpadding="0" cellspacing="0">
<tr><td>ID</td><td>IP address</td><td>DNS Name</td></tr>

EOF
while read line
do
ID=`echo $line|awk ‘{print $1}‘`

IP=`echo $line |awk ‘{print $2}‘`
NAME=`echo $line |awk ‘{print $3}‘`

echo "<tr><td>$ID</td><td>$IP</td><td>$NAME</td></tr>" >>$HTML

done < list.txt                                        #测试文件

cat >>$HTML <<EOF                          #HTML格式
</table>
</body>
</head>
</html>
EOF

2.运行脚本./auto_html

技术图片

 

3.查看生成的index.html

技术图片

 

 4.配置本地hosts文件

 技术图片

5.启动Nginx 服务器

技术图片

 

6.浏览器中输入网址http://www.test.com

技术图片

 

Shell编程WEB界面展示实践

标签:aci   www   inf   bing   ddr   info   脚本   ip add   test   

原文地址:https://www.cnblogs.com/maisha/p/12299835.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!