在Mapper.xml中注释中文时,编译会报如下错误 Caused by: com.sun.org.apache.xerces.internal.impl.io.MalformedByteSequenceException: 2 字节的 UTF-8 序列的字节 2 无效。 at com.sun.or ...
分类:
移动开发 时间:
2020-12-09 12:16:27
阅读次数:
8
methods: vue 里面可以放函数的地方 <div id="div"> <p >{{message}}</p> <button id="btn" v-on:click="change">点击翻译成中文</button> </div> <script src="https://cdn.jsdel ...
分类:
其他好文 时间:
2020-12-09 11:50:11
阅读次数:
4
批量操作Tomcat Shell脚本 #!/bin/bash tom="/opt/ronghelist" product=$1 usage="{gongcheng1|all} {start|stop|restart|status}" if [ "$1" == "" -o "$2" == "" ];t ...
分类:
系统相关 时间:
2020-12-08 12:39:01
阅读次数:
9
linux下查找文件中空行的行号 linux下查找文件中空行的行号 以aa.txt举例: 方法1:sed -n '/[a-zA-Z0-9@#$%^&*]/!=' aa.txt 方法2:grep -n ^$ aa.txt 方法3:awk '/^$/{print NR}' aa.txt 方法4:sed ...
分类:
系统相关 时间:
2020-12-07 12:22:19
阅读次数:
9
思路:先将网卡和对应IP地址写入到文本,再根据输入的参数进行case判断#!/bin/basheths=/tmp/eths.txt#定义网卡文本路径eth_if=/tmp/eth_if.txt#定义网卡和对应IP地址的文本路径useage(){echo"pleaseinput:$0-inetworkcardor-Iipaddress."}#定义使用函数wrong_netcard(){if!awk-
分类:
其他好文 时间:
2020-12-07 12:10:20
阅读次数:
4
第五部分 sed 1、删除centos 7系统/etc/grub2.cfg文件中所有以空白开头的行行首的空白字符 [root@centos8 ~]# sed -r 's@^[[:space:]]+(.*)@\1@' 2、删除/etc/fstab文件中所有以#开头,后边至少跟一个空白字符的行的行首的# ...
分类:
其他好文 时间:
2020-12-04 11:40:16
阅读次数:
10
用sed命令怎么打印文件中的最后一行https://zhidao.baidu.com/question/1431848772803799419.html执行下面2个命令1、awk‘NF{a=$0}END{printa}‘file.txt2、sed‘/^$/!h;$!d;g‘file.txt在下载了一个大文件之后,需要对他进行拆分[root@uhadoop-mzwc2w-master2hadoop-
分类:
系统相关 时间:
2020-12-04 11:14:38
阅读次数:
10
###1.查看Linux内核依赖 kernel version >= 3.8 查看代码: uname -a | awk '{split($3, arr, "-"); print arr[1]}' ###2.使用Docker repository安装 1)更新apt包索引: sudo apt-get ...
分类:
系统相关 时间:
2020-12-03 12:27:19
阅读次数:
14
awk是一种用于处理文本、模式匹配的编程语言。与sed和grep,俗称Linux下的三剑客。学会awk等于你在Linux命令行里,又多了一种处理文本的选择。这篇文章重点教你如何使用,看完这篇文章,就大致知道如何使用了,力求简单使用。术语铺垫在awk的文本处理规则里,awk将文本文件视为由字段和记录组成的文本数据库。默认情况下,awk将每一行视为一个记录,也就是说记录的分隔符是\n,记录的分隔符可以
分类:
系统相关 时间:
2020-12-01 12:42:31
阅读次数:
16
code macname@localhost Desktop % cat content fox jumps over the lazy dog. fox jumps over the lazy dog. fox jumps over the lazy dog. fox jumps over the ...
分类:
系统相关 时间:
2020-12-01 12:32:52
阅读次数:
24