博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sed-学习记录
阅读量:5320 次
发布时间:2019-06-14

本文共 1358 字,大约阅读时间需要 4 分钟。

sed的标签

-n  只打印模式匹配的行。

 ###替换字符串

[root@VM_0_16_centos sedDir]# [root@VM_0_16_centos sedDir]# cat Hello This is aaThis is bb[root@VM_0_16_centos sedDir]# sed 's/This/There/' Hello > output [root@VM_0_16_centos sedDir]# cat output There is aaThere is bb[root@VM_0_16_centos sedDir]#

  ###替换字符串

[root@VM_0_16_centos sedDir]# cat HelloThis is aaThis is bb[root@VM_0_16_centos sedDir]# cat Hello | sed 's/This/There/' > output[root@VM_0_16_centos sedDir]# cat output There is aaThere is bb[root@VM_0_16_centos sedDir]#

 ###输出行号

#不带number的p,输出的全部内容。

#带number的p,输出某一行。若number大于总行号,不输出。 number为非正整数,提示错误。

[root@VM_0_16_centos sedDir]# sed 'p' data 1 This is the header line1 This is the header line2 This is the first data line2 This is the first data line3 This is the third line3 This is the third line4 This is the second data line4 This is the second data line5 This is the laster line5 This is the laster line[root@VM_0_16_centos sedDir]# sed -n 'p' data 1 This is the header line2 This is the first data line3 This is the third line4 This is the second data line5 This is the laster line[root@VM_0_16_centos sedDir]# sed -n '1p' data 1 This is the header line[root@VM_0_16_centos sedDir]# sed -n '2p' data 2 This is the first data line[root@VM_0_16_centos sedDir]# sed -n '66p' data [root@VM_0_16_centos sedDir]#

 

转载于:https://www.cnblogs.com/tsing0520/p/10188505.html

你可能感兴趣的文章
Android ViewPager 动画效果
查看>>
把word文档中的所有图片导出
查看>>
ubuntu 18.04取消自动锁屏以及设置键盘快捷锁屏
查看>>
Leetcode 589. N-ary Tree Preorder Traversal
查看>>
机器学习/深度学习/其他开发环境搭建记录
查看>>
xml.exist() 实例演示
查看>>
判断是否为空然后赋值
查看>>
zabbix监控日志文件
查看>>
正则表达式
查看>>
pip install torch on windows, and the 'from torch._C import * ImportError: DLL load failed:' s...
查看>>
java基础(一):我对java的三个环境变量的简单理解和配置
查看>>
arcgis api 4.x for js 结合 Echarts4 实现散点图效果(附源码下载)
查看>>
YTU 2625: B 构造函数和析构函数
查看>>
apache自带压力测试工具ab的使用及解析
查看>>
C#使用Xamarin开发可移植移动应用(2.Xamarin.Forms布局,本篇很长,注意)附源码
查看>>
jenkins搭建
查看>>
C#中使用Split分隔字符串的技巧
查看>>
加固linux
查看>>
IPSP问题
查看>>
10.17动手动脑
查看>>