发布时间:2013-05-21 16:43:53
扫描指定文件内指定关键字,关键字支持正则表达式:
1,指定文件范围内扫描关键字,打印匹配内容;
2,指定文件范围内扫描关键字,统计匹配次数;
3,指定时间范围内扫描关键字,打印匹配内容;
4,指定时间范围内扫描关键字,统计匹配次数;
......【阅读全文】
发布时间:2013-05-20 17:02:12
今天帮同事处理问题时遇到一个需求,从日志中查询当天某个值的最大值、最小值、平均值,最终通过两种方式实现:1、使用sort排序,求最大值、最小值,使用for循环求平均值:grep RenewalCheckIbatisDAO.*getHistoryPolicyListByLicenceNo pafa.log |awk -F'time=' '{print $2}'|awk -F'ms' '{a[NR]=$1} END{b=0;c=a[.........【阅读全文】
发布时间:2013-05-16 10:36:46
(一)脚本实现功能: 实现root之外的用户只能登录一个ssh使用方法: 用root权限在后台(比如screen里)运行这个脚本#!/usr/bin/perl -wuse strict;sub main{ my @lines = `ps -eo user,pid,etime,cmd | grep sshd`; my $users; for my $line (@lines) {  .........【阅读全文】
发布时间:2013-04-11 17:51:34
In Oracle/PLSQL, the trim function removes all specified characters either from the beginning or the ending of a string.The syntax for the trim function is:trim([leading|trailing|both[trim_character]] string1)leading - remove trim_string from the front of string1.trailing - remove.........【阅读全文】
发布时间:2013-04-08 13:53:05
家里的电信还没有通IPv6,突然想去六维上面下几部电影(其实想看一下最近的新片出了没有)。有一些现成的软件就可以使用,但是我总觉的这样不够好,至少要略略知道一点点原理的好。现成的软件包括六飞http://www.6fei.com.cn/Venohttp://www.veno2.com/这两个东西,其实不.........【阅读全文】