`
joshuaton
  • 浏览: 27129 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
cat /data/apachelogs/access7272_log.20090707?? | awk -F"\""  '{if(index($2, "w|05002600")>0){sidx=index($2,"&i=");if(sidx>0){txt=substr($2, sidx+3);eidx=index(txt, "&");suid=substr(txt, 0, eidx-1);usermap[suid]++}}}END{l=0;for(suid in usermap ...
# coding=gbk import urllib import re def decodeQuery(query): lowStr = query.lower() if lowStr.find("%u")!=-1: t = re.compile(r"%u([0-9a-f]{2})([0-9a-f]{2})",re.IGNORECASE) matchList = t.findall(lowStr) for match in matchList: hex = match[0]+match[1] ...

apache配置

apache连接resin的配置 LoadModule caucho_module modules/mod_caucho.so.3.0 ResinConfigServer imgresin05 6802 #CauchoHost imgresin01 6802 <Location /pics> SetHandler caucho-request </Location>

rsync配置

vim /etc/rsyncd.conf 文件内容如下 uid = root gid = root use chroot = no hosts allow = 192.168.0.0/16 10.0.0.0/8 pid file = /var/run/rsyncd.pid log file = /var/log/rsync.log [root]         path = /         read only = no 配置完以后运行 rsync --daemon

设置vim默认编码

vim乱码的解决办法 vim ~/.vimrc 把文件内容更改为 set enc=prc set fileencodings=prc,utf8 prc表示中文

awk命令

1.在日志中查找 awk '$4~/p=40040103/&&$5~/index.htm/' cut.log.20090319 以"\t"分割,第4个元素含p=40040103,第5个元素含index.htm的行

linux常用命令

1.让程序转入后台运行 在最后加上&符号 # sh *.sh &
function readCookie (name) { var nameEQ=name+"="; var ca=document.cookie.split(';'); for(var i=0;i<ca.length;i++){ var c=ca[i];var idx=0; while(c.charAt(idx)==' ') idx++; if(idx>0) ...
Global site tag (gtag.js) - Google Analytics