发布时间:2014-06-12 15:46:41
:%s/xxx//gn统计的xxx的次数,,n最关键---------------:start,end /xxx/yyy/ 匹配从start到end行的进行替换......【阅读全文】
发布时间:2014-06-11 20:25:38
1. 将文件按照某列的值进行分割,只保留其中有用的列awk 'BEGIN{inum=0}{ if($3!=$inum) inum=$3; print $5,$6 >>"txt"inum}' 测试文件......【阅读全文】
发布时间:2014-06-10 17:07:48
精确纳秒级调度,但是原理上会更多的消耗CPU/** * schedule_hrtimeout - sleep until timeout * @expires:timeout value (ktime_t) * @mode:timer mode, HRTIMER_MODE_ABS or HRTIMER_MODE_REL * * Make the current task sleep until the given expiry time has * elapsed. The r.........【阅读全文】
发布时间:2014-06-09 16:26:54
int getopt_long(int argc, char * const argv[],const char *optstring, const struct option *longopts,int *longindex);int getopt(int argc, char * const argv[], const char *optstring);如果optstring短参数中第一个是符号-,则case 语句写1来匹配。char *short_options="-abc:"; while((c = geto.........【阅读全文】