最新回答 / ls437088
#!/bin/dash/*a simple shell*//* use command 'leave' to exit*/ #include <unistd.h>#include <sys/types.h>#include <sys/wait.h>#include <stdlib.h>#include <sys/stat.h>#include <fcntl.h> #define BUFFERSIZE 80 extern char *g...
2016-11-14
awk 安空格取得话$10,$11,$12 这个受机器运行影响的 超过时间一天 空格数会改变 负载几个参数也会随之变的
所以:
w | grep "load average:"| awk 'BEGIN{FS="average:"}{print $2}'
所以:
w | grep "load average:"| awk 'BEGIN{FS="average:"}{print $2}'
2016-11-08
直接用awk正则匹配,一条语句就可以出结果:awk '{if($2~/^([0-9]{1,3}.){3}[0-9]{1,3}/)print $2}' /etc/resolv.conf
2016-11-08
获取 dns
awk '{print $2}' /etc/resolv.conf | grep -v timeout
这样简单点 逻辑也清晰 取文件中第二列 去掉第一行
awk '{print $2}' /etc/resolv.conf | grep -v timeout
这样简单点 逻辑也清晰 取文件中第二列 去掉第一行
2016-10-24