-eq等于-ne不等于-gt大于-ge大于等于-lt小于-le小于等于seq130从1到30的数字touch-mt201003030303.03$Dir修改目录的时间格式stat/tmp/1.dir查看修改时间LINES=`grep‘^#‘$file|wc-l`echo"$file:$LINES"//可以用多个变量取结果要用``赋值给变量catfile.txt|tr-s‘\n‘将多个连续的..
分类:
其他好文 时间:
2014-09-24 04:22:36
阅读次数:
234
#!/usr/bin/pythonimportreimportosimportsysimportpycurldefbuffer_line(monitor_log):buf=open("/data0/webinternal_monitor/%s"%monitor_log).read()bytes=os.popen(‘wc-c/data0/logs/%s‘%monitor_log).read().split("")[0]ifint(bytes)<int(buf):return0else:returnint(..
分类:
其他好文 时间:
2014-09-23 17:31:15
阅读次数:
234
AWKawk是一种编程语言,用于在linux/unix下对文本和数据进行处理。sedsed是一种流编辑器,它是文本处理中非常中的工具grepgrep是一种强大的文本搜索工具,常常跟管道结合使用WC使用wc命令统计文本信息,利用wc指令我们可以计算文件的Byte数、字数或是列数 wc参数 -c ...
分类:
其他好文 时间:
2014-09-20 15:22:47
阅读次数:
203
find命令查看(推荐):所有子目录的数量:[root@localhost ~]# find afish -type d | wc -l158[root@localhost ~]# find afish/ -type d | wc -l158[root@localhost ~]# find afis...
分类:
系统相关 时间:
2014-09-18 09:42:53
阅读次数:
231
在控制台,cd到你的工程目录下,执行下面命令:
find . -name "*.[hm]" -print0 | xargs -0 wc -l
结果如下:...
分类:
其他好文 时间:
2014-09-16 14:17:20
阅读次数:
233
长久一段时间没有做任何工作总结了,如果用工作忙来敷衍那是欺骗自己,承认这一段时间拒绝进步了。 在系统运维中,有许多同名进程需要kill是常有的事情, 数一下battle这个进程的数量 [root@HDSG-4dtime-S2 ~]# netstat -ltpun | grep battle | wc...
分类:
系统相关 时间:
2014-09-14 12:46:17
阅读次数:
297
1 #pragma once 2 #include 3 #include 4 #include 5 #include 6 #pragma comment(lib, "dbghelp.lib") 7 8 9 inline BOOL IsDataSectionNeeded(const WC...
分类:
其他好文 时间:
2014-09-10 20:53:11
阅读次数:
207
要注意一开始将所有为'1'的点入队,然后通过一次BFS去更新所有点的距离,直到无法更新为止。 1 #include 2 #include 3 #include 4 using namespace std; 5 const int dx[]={0,0,-1,1},dy[]={1,-1,0,0}; 6 ...
分类:
其他好文 时间:
2014-09-09 11:18:58
阅读次数:
178
解决办法:
(1)、将写入字符串转换编码为:ANSI
char* pBuffer = NULL;
long lBufferSize;
lBufferSize = WideCharToMultiByte(CP_ACP, WC_NO_BEST_FIT_CHARS, m_sRtf, -1, NULL, 0, NULL, NULL);
pBuf...
分类:
其他好文 时间:
2014-09-04 19:12:50
阅读次数:
373
netstat-pnt|grep:22|wc-l显示多少就是有多少个连接,过滤条件可以换成别的,我这里举例是过滤了22端口,当然可以过滤PID或者进程名称等。
分类:
系统相关 时间:
2014-09-04 15:06:50
阅读次数:
278