#!/bin/bash while read linedo echo $line txt=`echo $line |awk -F' ' '{print $1}'` id=`echo $line|awk -F' ' '{print $3}'` echo $txt echo $id sed "s/ws2 ...
分类:
系统相关 时间:
2021-05-03 12:39:24
阅读次数:
0
ps aux|grep java | grep -v grep |awk '{print "kill -9 "$2}'|sh awk文本分析指令,读入一列表(含有换行符,作为一条记录),在一条记录中已空格或者table作为分割符分成n个域,$0表示所以域即整条记录,$1标识第二个域中的内容,$n表示 ...
分类:
系统相关 时间:
2021-04-24 13:49:09
阅读次数:
0
1、测试数据 [root@centos7 test3]# cat b.txt e t s e s g m x w d g i d t e g x g e w 2、打印匹配w的行 [root@centos7 test3]# cat b.txt e t s e s g m x w d g i d t e ...
分类:
系统相关 时间:
2021-04-24 13:18:10
阅读次数:
0
今天决定把Debian 10.1自带的4.19内核升级到5.2.14。 需要的工具automake、make、g++(包含gcc)、bison、flex、libelf-dev、libssl-dev、bc。 懒人命令: sudo apt install -y automake make g++ bis ...
分类:
其他好文 时间:
2021-04-23 11:58:49
阅读次数:
0
Markdown 学习 一级标题 :一个#号加空格 一 二级标题 二级标题两个##加空格 二 三级标题 三级标题两个###加空格 字体 hello word hello word hello word 引用 程序化排版 用一个大于号 三个减号或三个星号 分割线 插入图片 超链接 连接超链接 [链接文 ...
分类:
其他好文 时间:
2021-04-22 16:23:22
阅读次数:
0
统计tomcat的access日志的ip次数,并按次数排序 awk '{sum[$1]++}END{for(i in sum) print i "\t" sum[i]}' localhost_access_log.* | sort -n -k2 统计某个接口的调用时间 awk '{if($7~/.* ...
分类:
数据库 时间:
2021-04-21 12:18:10
阅读次数:
0
linux 监控服务器流量 #!/bin/bash ethn=$1 while true do RX_pre=$(cat /proc/net/dev | grep $ethn | sed 's/:/ /g' | awk '{print $2}') TX_pre=$(cat /proc/net/dev ...
分类:
系统相关 时间:
2021-04-21 12:03:54
阅读次数:
0
Meta 表示变化 name 名字 viewport 视口 centent 内容 device 配置 scale 比例&范围 Maximum 最大比例&范围&限度 screen 屏幕 手机兼容性适配 @media screen and (max-width:600px) { .content{wid ...
分类:
Web程序 时间:
2021-04-20 15:42:04
阅读次数:
0
中国的古人写文字,是从右向左竖向排版的。本题就请你编写程序,把一段文字按古风排版。 输入格式: 输入在第一行给出一个正整数N(<100),是每一列的字符数。第二行给出一个长度不超过1000的非空字符串,以回车结束。 输出格式: 按古风格式排版给定的字符串,每列N个字符(除了最后一列可能不足N个)。 ...
分类:
其他好文 时间:
2021-04-13 11:40:41
阅读次数:
0
1. 指定宽度对齐 说明: %-30s表示输出字符串,宽度30位,左对齐. %-15s用来指定第二列的,左对齐,宽度15. 两个百分号之间可以没有空格. 使用\n对每一行的输出加上换行符。 work]# awk -F: '{print "user:" $1"\t\tuid:" $3}' /etc/p ...
分类:
系统相关 时间:
2021-04-10 13:03:55
阅读次数:
0