博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[linux]写的一个服务器数据过滤HTML脚本
阅读量:6226 次
发布时间:2019-06-21

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

此脚本过滤统计后台数据并显示为HTML格式
# !/bin/sh  ls -l /home/work/tools/tomcat-splitter/data/ROOT/$1 | grep $2 |sort | awk '{print $9}' >tmp.txtfile1=`cat tmp.txt | sed -n '1p'`grep $3 $file1 > $1$2$3.txtfile_input=$1$2$3'.txt'file_output=$1$2$3".html"td_str=''function create_html_head(){    echo -e "                        

$file_input

" }function create_table_head(){ echo -e "
" }function create_td(){# if [ -e ./"$1" ]; then echo $1 td_str=`echo $1 | awk 'BEGIN{FS=" "}''{i=1; while(i<=NF) {print "
";i++}}'` echo $td_str # fi }function create_tr(){ create_td "$1" echo -e "
$td_str
" >> $file_output}function create_table_end(){ echo -e "
"$i"
" }function create_html_end(){ echo -e "" }function create_html(){ rm -rf $file_output touch $file_output create_html_head >> $file_output create_table_head >> $file_output while read line do echo $line create_tr "$line" done < $file_input create_table_end >> $file_output create_html_end >> $file_output}create_html

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

你可能感兴趣的文章
iOS - OC RunLoop 运行循环/消息循环
查看>>
php smarty使用..
查看>>
FLV文件格式解析
查看>>
将Sqlserver2012Express的mdf文件同步到SqlServer2008
查看>>
10条影响CSS渲染速度的写法与建议(摘抄HTML5中国)
查看>>
选项卡
查看>>
【深度学习】一文读懂机器学习常用损失函数(Loss Function)
查看>>
php判断数据类型
查看>>
css 定位标签设置格式
查看>>
js-实现鼠标滑轮滚动实现换页
查看>>
windows下通过.bat运行java程序
查看>>
Zabbix二次开发_01基础
查看>>
几何画板演示多边形滚动动画的方法
查看>>
指令处理的数据的长度
查看>>
短信验证倒计时
查看>>
iOS11里判断Safari浏览器是无痕模式还是正常模式?
查看>>
Vue.js 与 ActiveX 控件
查看>>
DVWA学习笔记
查看>>
C语言
查看>>
匈牙利表示法
查看>>