#!/bin/bashwhiletruedoRX=`ifconfig|awk‘NR==7{print$2}‘|cut-d":"-f2`TX=`ifconfig|awk‘NR==7{print$6}‘|cut-d":"-f2`ZX=`expr$RX+$TX`sleep60#foriin`seq120-11`#do#echo-n-e"\b$i"#sleep1#done#echo-n-e"\b"RX1=`ifconfig|awk‘NR==7{print$2}‘|cut-d":"-f2`TX1=`ifconfig|a..
分类:
其他好文 时间:
2015-10-12 02:04:02
阅读次数:
229
1 #!/bin/bash2 3 rate=$(df -h |grep /dev/sda3 | awk '{print $5}' | cut -d "%" -f1)4 5 if [ $rate -ge 10 ]6 then7 echo "Warning! /dev/sda3 is...
分类:
其他好文 时间:
2015-10-10 19:55:29
阅读次数:
170
DescriptionGiven an undirected graph, in which two vertices can be connected by multiple edges, what is the size of the minimum cut of the graph? i.e....
分类:
其他好文 时间:
2015-10-08 10:20:24
阅读次数:
224
Binary search. Please not data types and some details.class Solution {public: /** *@param L: Given n pieces of wood with length L[i] *@para...
分类:
其他好文 时间:
2015-10-07 12:12:05
阅读次数:
184
无向图最小割,Stoer Wanger算法。先找了个模板,日后再学习吧...#include#include#include#includeusing namespace std;#define MAXN 555#define inf 11){ int k=0,pre=0;//pre用...
分类:
其他好文 时间:
2015-10-07 11:59:52
阅读次数:
216
一、一切皆文件linux下“一切皆文件”,不仅数据被组织成文件形式,连各种设备资源也被抽象成了文件形式,而文件只有读、写、执行等几种方式,这样便统一了用户对各种资源的访问方式,简化了操作。二、文件类型普通文件(-,f)、目录文件(d)、符号链接文件(l)、设备文件(..
分类:
系统相关 时间:
2015-10-05 07:05:57
阅读次数:
443
shell 命令处理文本: 1. 批量处理该目录下的文件,ls | while read l ; do echo $l ; done > b.txt 2. 批量处理文件的每一行 , cut -f 1 a.txt | while read l ; do echo $l ; done > b.txt ....
分类:
系统相关 时间:
2015-10-02 11:18:04
阅读次数:
184
Flip over your mind: in rotated subarray case, we can simply cut the continuous smallest subarray.class Solution {public: /** * @param A an int...
分类:
其他好文 时间:
2015-10-02 01:26:38
阅读次数:
248
[root@WebServer aa]# cat oldboy.txt I am oldboy myqq is 49000448[root@WebServer aa]# cat oldboy.txt |cut -d " " -f3,6oldboy 49000448[root@WebServer aa...
分类:
其他好文 时间:
2015-09-30 20:48:07
阅读次数:
167
一,cat命令1,可选参数-A,--show-all等价于-vET-b,--number-nonblank对非空输出行编号-e等价于-vE-E,--show-ends在每行结束处显示$-n,--number对输出的所有行编号-s,--squeeze-blank不输出多行空行-t与-vT等价-T,--show-tabs将跳字符显示为^I-u(被忽略)-v,--show-nonprinting..
分类:
系统相关 时间:
2015-09-30 01:07:30
阅读次数:
354