三种方法都可以 [root@localhost ~]# sed -n "1,5 s#.*\(.\)#\1#p" /etc/passwd[root@localhost ~]# sed -nr '1,5 s#(.)#\1 #gp' /etc/passwd |awk '{print $NF}'[root@ ...
分类:
其他好文 时间:
2019-05-19 13:41:25
阅读次数:
138
#!/bin/shecho"fatherpid$PPID"grandpaPid=`ps-f$PPID|awk‘{if(NR==2)print$3}‘`echo"grandpapid$grandpaPid"grandpaName=`head-n1/proc/$grandpaPid/status|awk‘{print$2}‘`echo"mygrandPaName:<$grandpaName>
分类:
系统相关 时间:
2019-05-17 19:24:27
阅读次数:
158
seq: 数字 间隔(可没有默认为1)数字 sed :实现对文件的增删改替换查 alias:eg alias cp="cp -i" awk:过滤 输出。NR代表行号 1.查看文件10行到20行的内容 head -20 num.txt |tail -11 sed -n "20,30"p num.txt ...
分类:
系统相关 时间:
2019-05-07 13:02:40
阅读次数:
155
AWK是一种处理文本文件的语言,是一个强大的文本分析工具。在处理庞大文件时不会出现内存溢出或是处理缓慢的问题,通常用来格式化文本信息。是个报告工具。、语法:awk‘/pattern/{command}’file1file2..print(输出打印)printf(格式化输出)%c:字符%s:字符串%d:整数%f:小数%10s:宽度10位%-10s:左对齐Record:记录每一行Field:域NR:行
分类:
其他好文 时间:
2019-05-05 20:38:39
阅读次数:
135
awk是行处理器:相比较屏幕处理的优点,在处理庞大文件时不会出现内存溢出或是处理缓慢的问题,通常用来格式化文本信息报告工具1.awk:一次处理一行例如:awk‘/pattern/{command}’filefile1...2.print:输出打印printf:格式化输出3.%c:字符%s:字符串%d:整数%f:float小数浮点型%10s:宽度10位字符串%-10s:左对齐4.NR:recordn
分类:
系统相关 时间:
2019-05-05 20:36:46
阅读次数:
183
awk:行处理器awk‘/pattern/{command}‘file1file2..print(输出打印)printf(格式化输出)%c:字符%s:字符串%d:整数%f:float浮点型小数%10s:右对齐10位宽度字符串%-10s:左对齐Record:记录/每一行Field:域NR:recordnumber:行号NF:fieldnunber:字段的号列号FS:fieldsepa
分类:
其他好文 时间:
2019-05-05 19:24:29
阅读次数:
164
https://blog.csdn.net/kokerf/article/details/72437294 对于线性方程组,解的判别条件如下: 1. Ax=0Ax=0 总有解,至少有零解 2. Am×nx=0Am×nx=0 当r(A)=nr(A)=n,只有零解 当r(A)<nr(A)<n,有无穷多解 ...
分类:
其他好文 时间:
2019-05-02 15:53:04
阅读次数:
105
一、写Shell脚本 mkdir -p /var/script/ vim /var/script/freemem.sh 写入以下Shell脚本: #!/bin/bash # 当前已使用的内存大小 used=`free -m | awk 'NR==2' | awk '{print $3}'` # 当前 ...
分类:
系统相关 时间:
2019-04-28 18:38:03
阅读次数:
149
模板 表 模板-表 select * from nr_templet_index where control_type = 1; --gridview的定义 xml 及 打印的定义 repx select t.*, rowid from nr_templet_content t where temp ...
分类:
其他好文 时间:
2019-04-26 14:47:21
阅读次数:
99
使用命令:awk、sed注意:要注意!正则有使用规则的!先看ip地址,使用命令:ifconfigeth0|awk‘NR==2‘/ifonfigeth0|sed-n‘2p‘输出结果:省略一下,可以自己去试一下。ifconfigeth0|awk‘NR==2‘-F"[:]+"‘{print$4}‘ifconfigeth0
分类:
系统相关 时间:
2019-04-25 01:32:06
阅读次数:
143