0.sed 常用内部命令

a   在匹配后面添加
i 在匹配前面添加
p 打印
d 删除
s 查找替换
c 更改
y 转换 N D P

下面用a来演示

1.sed 'a 追加内容' 文件

# sed 'a newaddcontent' t.txt
1 the quick brown fox jumps over the lazy dog.
newaddcontent
2 the quick brown fox jumps over the lazy dog.
newaddcontent
3 the quick brown fox jumps over the lazy dog.
newaddcontent

如果执行在第3行追加,则可

# sed '3a newaddcontent' t.txt
1 the quick brown fox jumps over the lazy dog.
2 the quick brown fox jumps over the lazy dog.
3 the quick brown fox jumps over the lazy dog.
newaddcontent

如果要在第1行到第3行 追加则

# sed '1,3a newaddcontent' t.txt
1 the quick brown fox jumps over the lazy dog.
newaddcontent
2 the quick brown fox jumps over the lazy dog.
newaddcontent
3 the quick brown fox jumps over the lazy dog.
newaddcontent
4 the quick brown fox jumps over the lazy dog.

但实际的使用中我们并不知道行号,此时可以使用匹配模式

sed '/搜索内容/ a 追加内容' t.txt

# sed '/2 the/ a newcontent' t.txt
1 the quick brown fox jumps over the lazy dog.
2 the quick brown fox jumps over the lazy dog.
newcontent

2.关于 d  删除命令

sed -r '/^#/d' ~/nginx.conf  #删除配置文件中以#开头的行号 -r为使用正则,//为匹配模式

sed -r '/(^#|#|^$)/d' ~/nginx.conf  #增强版 不仅仅是匹配 #开头 还匹配了 包含# 及 空格

3.替换

# sed 's dog cat ' t.txt
1 the quick brown fox jumps over the lazy cat.

# sed '/2 the/s/dog/cat/' t.txt   #匹配模式 找到2 the 这一行 然后替换
1 the quick brown fox jumps over the lazy dog.
2 the quick brown fox jumps over the lazy cat.

4.整行替换

# sed 'c zhenghang' t.txt  #全部替换
zhenghang
zhenghang

# sed '2c zhenghang' t.txt  #仅替换第二行
1 the quick brown fox jumps over the lazy dog.
zhenghang
3 the quick brown fox jumps over the lazy dog.

# sed '2,3c zhenghang' t.txt  #替换第二到第三行
1 the quick brown fox jumps over the lazy dog.
zhenghang
4 the quick brown fox jumps over the lazy dog.

sed '/3 the/c zhenghang' t.txt  #匹配模式替换整行
1 the quick brown fox jumps over the lazy dog.
2 the quick brown fox jumps over the lazy dog.
zhenghang
4 the quick brown fox jumps over the lazy dog.

5.转换

# sed 'y abcdefg ABCDEFG ' t.txt  #将文中的前面的内容替换为后面的内容
1 thE quiCk Brown Fox jumps ovEr thE lAzy DoG.

6.打印

# sed '2p' t.txt  #将第二行多打印一次 ,其余用法和上面类似
1 the quick brown fox jumps over the lazy dog.
2 the quick brown fox jumps over the lazy dog.
2 the quick brown fox jumps over the lazy dog.
3 the quick brown fox jumps over the lazy dog.

7.标志位

  数字

  g

  p 

  w filename

如果要替换的内容有多个,默认会替换第一个,如果要指定替换某一个,则可以在后面加上指定的数字

# sed 's/dog/cat/' t2.txt    #默认替换第一个dog
1 the quick brown fox jumps over the lazy cat dog.

# sed 's/dog/cat/2' t2.txt  #在后面加上2则替换第二个dog
1 the quick brown fox jumps over the lazy dog cat.

# sed 's/dog/cat/g' t2.txt  #使用g参数则替换所有
1 the quick brown fox jumps over the lazy cat cat.

# sed '2s/dog/cat/w newfile' t.txt   #仅修改第二行并仅将第二行保存到新文件 newfile中
1 the quick brown fox jumps over the lazy dog.
2 the quick brown fox jumps over the lazy cat.
3 the quick brown fox jumps over the lazy dog.

# cat newfile   #可见在newfile中只有第二行,原文件未受影响
2 the quick brown fox jumps over the lazy cat.

8.命令选项

-n 抑制输出

# sed '3s/dog/cat/' t.txt  默认会显示文本中的所有行,但是我们只想显示第3行
1 the quick brown fox jumps over the lazy dog.
2 the quick brown fox jumps over the lazy dog.
3 the quick brown fox jumps over the lazy cat.
4 the quick brown fox jumps over the lazy dog.

# sed -n '3s/dog/cat/p' t.txt   #可配合p使用,达到仅显示要显示的内容

3 the quick brown fox jumps over the lazy cat.

-e 执行多条命令

# sed -e 's/dog/cat/;s/brown/green/' t.txt
1 the quick green fox jumps over the lazy cat.

-f 指定命令文件位置

可以向上面那样将书写一条命令完成任务,也可以将多条命令存放在一个文件中,再通过使用 -f 指定命令文件位置,来达到同样的效果

# cat mingling.txt
s/brown/green/
s/dog/cat/

# sed -f mingling.txt t.txt
1 the quick green fox jumps over the lazy cat.

-i 修改源文件

注意!!! 此操作不可逆,要慎重使用

如果不加-i 则仅仅是将文件读到内存中显示,并不会写回原文件中,所以需要通过使用-i参数来写回原文件

# sed -ie 's/dog/cat/;s/brown/green/' t.txt   #-i 保存到原文件 -s执行多条命令,此处为混合使用
# cat t.txt
1 the quick green fox jumps over the lazy cat.

可以在使用-i时,后面加上 -i.bak 在修改前先备份原文件为i.bak

sed -i.bak -e 's/dog/cat/;s/brown/green/' t.txt

此时命令执行结束后,会在当前目录生成一个文件名.bak的文件备份

9.使用管道符

# echo "tom is cool" | sed 's/tom/life/'
life is cool

10.小技巧

# sed -n '$=' t.txt  统计行数
5

# sed '=' t.txt  给每行加行号

1
1 the quick green fox jumps over the lazy cat.
2
2 the quick green fox jumps over the lazy cat.
3
3 the quick green fox jumps over the lazy cat.
4
4 the quick green fox jumps over the lazy cat.
5
5 the quick green fox jumps over the lazy cat.

# sed -n -r '/^(root)(.*)(bash)$/p' /etc/passwd      #使用正则表达式 -r ,显示passwd文件中root开头 bash结尾的信息
root:x:0:0:root:/root:/bin/bash

案例一:DNS监测WEB服务状态,并根据其状态实现高可用解析,场景:通过DNS进行单域名多条A记录解析做负载均衡。

#!/bin/bash
CP1=0
CP2=0
while :
do
#tong
ping -c1 192.168.18.240 > /dev/null
if [ $? -eq 1 ] && [ $CP1 -eq 0 ]
then
sed -i '/192.168.18.240/s/^/;/' /var/named/baidu.zone
/etc/init.d/named reload
CP1=1
fi
#butong
ping -c1 192.168.18.240 > /dev/null
if [ $? -eq 0 ] && [ $CP1 -eq 1 ]
then
sed -i '/192.168.18.240/s/;//' /var/named/baidu.zone
/etc/init.d/named reload
CP1=0
fi ping -c1 192.168.18.241 > /dev/null
if [ $? -eq 1 ] && [ $CP2 -eq 0 ]
then
sed -i '/192.168.18.241/s/^/;/' /var/named/baidu.zone
/etc/init.d/named reload
CP2=1
fi
ping -c1 192.168.18.241 > /dev/null
if [ $? -eq 0 ] && [ $CP2 -eq 1 ]
then
sed -i '/192.168.18.241/s/;//' /var/named/baidu.zone
/etc/init.d/named reload
CP2=0
fi sleep 5
done

记录 shell学习过程(10 ) shell 对文件的操作的更多相关文章

  1. shell脚本,在指定目录下通过随机小写10个字母加固定字符串oldboy批量创建10个html文件。

    [root@localhost wyb]# cat test10.sh #!/bin/bash #使用for循环在/test10目录下通过随机小写10个字母加固定字符串oldboy批量创建10个htm ...

  2. [ Shell ] 通过 Shell 脚本导出 GDSII/OASIS 文件

    https://www.cnblogs.com/yeungchie/ 常见的集成电路版图数据库文件格式有 GDSII 和 OASIS,virtuoso 提供了下面两个工具用来在 Shell 中导出版图 ...

  3. linux 学习10 shell 基础

    10.1 Shell概述 .Shell是什么 Shell是一个命令行解释器,它为用户提供了一个向Linux内核发送请求以便运行程序的界面系统级程序,用户可以用Shell来启动.挂起.停止甚至是编写一 ...

  4. 如何使用shell脚本快速排序和去重文件数据

    前面写过一篇通过shell脚本去重10G数据的文章,见<用几条shell命令快速去重10G数据>.然而今天又碰到另外一个业务,业务复杂度比上次的单纯去重要复杂很多.找了很久没有找到相应的办 ...

  5. Linux 学习记录 四(Bash 和 Shell scirpt).

    一.什么是 Shell? 狭义的shell指的是指令列方面的软件,包括基本的Linux操作窗口Bash等,广义的shell则包括 图形接口的软件,因为图形接口其实也可以操作各种驱动程序来呼叫核心进行工 ...

  6. Centos7下crontab+shell脚本定期自动删除文件

    问题描述: 最近有个需求,就是rsync每次同步的数据量很多,但是需要保留的数据库bak文件 保留7天就够了,所以需要自动清理文件夹内的bak文件 解决方案: 利用shell脚本来定期删除文件夹内的任 ...

  7. Shell学习——子shell操作记录转储

    概述 主要介绍子shell历史操作记录的保存以及解析,比如python, scala等,用于(准)实时监控用户行为. 背景 一级shell的历史操作记录已由系统实现,当用户从开始登录shell(这里指 ...

  8. Shell语言系列之一:文件处理

    前言 &nbsp 标准输入/输出可能是软件工具设计原则里最基本的观念了.有很多UNIX程序都遵循这一设计历练.默认情况下,他们会读取标准输入,写入标准输出,并将错误信息传递给标准错误输出. & ...

  9. Linux Shell编程第5章——文件的排序、合并和分割

    目录 sort命令 sort命令的基本用法 uniq命令 join命令 cut命令 paste命令 split命令 tr命令 tar命令 sort命令 sort命令是Linux系统一种排序工具,它将输 ...

  10. Shell脚本使用汇总整理——文件夹及子文件备份脚本

    Shell脚本使用汇总整理——文件夹及子文件备份脚本 Shell脚本使用的基本知识点汇总详情见连接: https://www.cnblogs.com/lsy-blogs/p/9223477.html ...

随机推荐

  1. Codeforces Round447 D树上前缀和

    已知完全二叉树和每条边的权值,q次询问,每次给出sta起点和H. w=(H-点到sta的权值),求w>0的所有w的加和. 这题用树上前缀和来写,e[i]记录子树上的点到点i的距离,sum[i][ ...

  2. VSTO开发指南(VB2013版) 第一章 Office对象模型

    完美地将visual basic和office 办公软件结合起来.来自微软公司VSTO小组的权威专家所编著. 全书共712页,内容极其全面而深入,猛一看,厚地犹如庞然大物.看完离大神就不远了哦< ...

  3. Leetcode 与树(TreeNode )相关的题解测试工具函数总结

    最近在剑指Offer上刷了一些题目,发现涉及到数据结构类的题目,如果想在本地IDE进行测试,除了完成题目要求的算法外,还需要写一些辅助函数,比如树的创建,遍历等,由于这些函数平时用到的地方比较多,并且 ...

  4. vue及vant框架,多语言配置

    1.安装 vue-i18n,( cnpm install vue-i18n --save ) 2.在入口,main.js 中引入 (import Vuei18n from "vue-i18n ...

  5. P4735 最大异或和 /【模板】可持久化Trie

    //tire的可持久化 //线段树的可持久化——主席树 //可持久化的前提:本身的拓扑结构在操作时不变 //可以存下来数据结构的所有历史版本 //核心思想:只记录每一个版本与前一个版本不一样的地方 / ...

  6. 关于MY Sql 查询锁表信息和解锁表

    1.查询锁住表信息 show OPEN TABLES where In_use > 0; 2.查看进程  show processlist; 3.解开锁住的表 需要杀掉锁住表的相关进程Id. k ...

  7. 剑指offer-面试题34-二叉树中和为某一值的路径-二叉树遍历

    /* 题目: 输入一颗二叉树和一个整数,打印从根节点到叶子节点中所有和为该整数的路径. */ /* 思路: 先序遍历,深度遍历. 从树根开始,记录路径之和,遍历到叶子节点,如果和为期望值,则输出. 回 ...

  8. PTA Is Topological Order

    Write a program to test if a give sequence Seq is a topological order of a given graph Graph. Format ...

  9. 安装MYSQL到Ubuntu(APT)

    运行环境 系统版本:Ubuntu 16.04.6 LTS 软件版本:MYSQL-5.7 硬件要求:无 安装过程 1.安装APT-MYSQL存储库 APT-MYSQL存储库由MYSQL官网提供.选择安装 ...

  10. Verilog-同步FIFO

    参考博客:https://blog.csdn.net/hengzo/article/details/49683707 1.基本框图 1)双端口RAM加两个读写指针 2)写数据.写使能.写满:读数据.读 ...