sed命令 语法: sed [options] '{command}[flags]' [filename] {}是必须有,[]可选 options: -r 使用扩展的正则表达式 -n 只打印缓存中的内容,不打印文本内容 -e 执行多个命令 -f 执行文件中的命令 -i 修改原文件 -i.xxxx 修 ...
分类:
系统相关 时间:
2021-01-07 12:17:11
阅读次数:
0
1、首先安装一下ansible yum install ansible 2、修改一下ansible的参数以防ssh过去的时候需要首次判断yes 或者no sed -i 's/#host_key_checking = False/host_key_checking = False/g' /etc/an ...
分类:
其他好文 时间:
2021-01-07 12:10:47
阅读次数:
0
安装部署主控节点服务 -- etcd 部署master节点服务 部署etcd集群 集群规划 HDss7-12.host.com ectc lead 192.168.154.12 HDss7-21.host.com ectc follow 192.168.154.21 HDss7-22.host.co ...
分类:
其他好文 时间:
2021-01-07 11:46:58
阅读次数:
0
Python for Data Science - Data Visualization Three Different Data Visualization Types Data storytelling - for presentations to organizational decision ...
分类:
编程语言 时间:
2021-01-06 12:18:03
阅读次数:
0
Homework 5: Semantic Analyzer --ExperiencePurposeExperience with coding a semantic analyzer for the Pym language. The computation is based on aparse t ...
分类:
其他好文 时间:
2021-01-05 11:13:51
阅读次数:
0
分屏查看文件more/lessmore分屏查看,空格按屏查看less支持按行上下键查看,空格按屏查看 grep 查找 //若想使用正则表达式, 需要 -E选项grep -E "nice" metadata.txt //正则表达式匹配metadata中,包含nice的行egrep "nice" met ...
分类:
系统相关 时间:
2021-01-04 10:47:00
阅读次数:
0
添加依赖 <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.2.3</version> <scope>test</scope> </dependency ...
分类:
编程语言 时间:
2021-01-02 11:26:25
阅读次数:
0
1、修改MySQL密码方法一:usemysql;updateusersetpassword=PASSWORD(“123456”)whereuser=‘root’;flushprivileges;忘记密码:sed-ri‘3dskip-grant-tables‘/etc/my.cnfsystemctlrestartmariadbusemysql;updateusersetpasswor
分类:
数据库 时间:
2021-01-02 10:57:18
阅读次数:
0
Linux基础命令 一.文件处理 sed //基于行的过滤和转换文本的流编辑器 不修改文件查看修改后的效果 [root@lei ~]# cat a / 123 456 789 [root@lei ~]# sed 's/123/321/g' a 321 456 789 sed - i // 修改文件内 ...
分类:
系统相关 时间:
2021-01-01 12:49:04
阅读次数:
0
canal数据同步报错:Caused by: com.alibaba.otter.canal.protocol.exception.CanalClientException: java.net.ConnectExceptio 端口未开放 解决方案 : 开放 11111端口 iptables -I I ...
分类:
编程语言 时间:
2020-12-31 12:57:27
阅读次数:
0