发布时间:2015-08-30 22:36:40
<p class="MsoListParagraph" align="left" style="text-indent:0cm;"><b>Linux</b><b>显示时间戳:<span lang="EN-US"><o:p></o:p></span></b></p><p class="MsoListParagraph" align="left" style="text-indent:0cm;"><b> date +%s #</b><b>显示</b><b>时间戳</b><b><o:p></o:p></b></p><p clas........【阅读全文】
发布时间:2015-08-28 23:02:48
<p class="MsoNormal"><b>周期性计划任务:<span lang="EN-US"><o:p></o:p></span></b></p><p class="MsoNormal"><b>配置文件:<span lang="EN-US"><o:p></o:p></span></b></p><p class="MsoNormal"><b> vim/etc/crontab<o:p></o:p></b></p><p class="MsoNormal"><b>* * &nbs......【阅读全文】
发布时间:2015-08-25 23:19:19
1.获得访问前10位的ip地址<br /><br />cat access.log|awk ‘{print $1}’|sort|uniq -c|sort -nr|head -10<br />cat access.log|awk ‘{counts[$(11)]+=1}; END {for(url in counts) print counts[url], url}’<br /><br /><br />2.访问次数最多的文件或页面,取前20<br /><br /><br />cat access.log|awk ‘{prin.........【阅读全文】