分页: 82/121 第一页 上页 77 78 79 80 81 82 83 84 85 86 下页 最后页 [ 显示模式: 摘要 | 列表 ]

SHELL分析过滤IIS日志 不指定

root , 2007/09/22 15:04 , SHELL , 评论(0) , 阅读(5958) , Via 本站原创
引用

获取index.asp一天中出现的个数排序:
more ex080305.log |awk '{ printf "%s %s %s",$1,$2,$6"\r\n"}'|grep index.asp|uniq -c|sort -r|head -1000 > outInfo.txt


引用

如果按秒来算可以这样:
more ex080305.log |awk '{ printf "%s %s %s",$1,substr($2,0,5),$6"\r\n"}'|grep index.asp|uniq -c >out.txt

Linux下Find与cp、rm结合的应用 不指定

root , 2007/09/22 15:00 , Linux , 评论(0) , 阅读(10004) , Via 本站原创
引用

一、find and cp
find /home -name '*.conf'|xargs -I {} cp -r {} /home/conf/

引用

二、find and rm
find /home -name 'test-file-*' | xargs rm -rf
Tags:
分页: 82/121 第一页 上页 77 78 79 80 81 82 83 84 85 86 下页 最后页 [ 显示模式: 摘要 | 列表 ]