引用
获取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
引用
一、find and cp
find /home -name '*.conf'|xargs -I {} cp -r {} /home/conf/
引用
二、find and rm
find /home -name 'test-file-*' | xargs rm -rf