sed编辑
data4.txt
this is a test of the test script
this is the second test of the trial script
data6.txt
this is line number 1.
this is line number 2
this is line number 3
this is line number 4
1.sed s 替换命令
--sed '' data4.txt --每行的第二个
this is a test of the train script
this is the second test of the trial script
--sed 's/test/train/g' data4.txt--替换所有
this is a train of the train script
this is the second train of the trial script
--sed -n 's/test/train/p' data4.txt--替换每行的第一个
this is a train of the test script
this is the second train of the trial script
--sed 's/test/train/w sed_test.txt' data4.txt --替换每行的第一个,输出到sed_test.txt文件
this is a train of the test script
this is the second train of the trial script
2. sed c 替换某一行
sed '3c\this is line changed' data6.txt
this is line number 1.
this is line number 2
this is line changed
this is line number 4
3. sed y 映射替换
--sed 'y/123/789/' data6.txt
this is line number 7.
this is line number 8
this is line number 9
this is line number 4
4. sed d 删除命令
--sed '3d' data6.txt--删除第3行
this is line number 1.
this is line number 2
this is line number 4
--sed '2,3d' data6.txt --删除2,3行
this is line number 1.
this is line number 4
--sed '/1/,/3/d' data6.txt --删除1至3行
this is line number 4
5. sed i 指定行的前面插入一行
--sed '3i\this is line number 5' data6.txt
this is line number 1.
this is line number 2
this is line number 5
this is line number 3
this is line number 4
--sed '3i\this is line number 6 \n this is line number 5' data6.txt
this is line number 1.
this is line number 2
this is line number 6
this is line number 5
this is line number 3
this is line number 4
6. sed a 在指定行的后面插入一行
--sed '3a\this is line number 6' data6.txt
this is line number 1.
this is line number 2
this is line number 3
this is line number 6
this is line number 4
7.sed r 将文件插入到指定位置
--sed '3r data12.txt' data6.txt
this is line number 1.
this is line number 2
this is line number 3
this is an add line
this is line number 4
--sed '$r data12.txt' data6.txt --将文件插入末尾
this is line number 1.
this is line number 2
this is line number 3
this is line number 4
this is an add line
8. sed w 写入文件
sed '1,2w test_sed.txt' data6.txt--将1,2行写入test_sed.txt文件
this is line number 1.
this is line number 2
sed编辑的更多相关文章
- gerp 查找, sed 编辑, awk 根据内容分析并处理.的作用
awk(关键字:分析&处理) 一行一行的分析处理 awk '条件类型1{动作1}条件类型2{动作2}' filename, awk 也可以读取来自前一个指令的 standard input相对 ...
- mac上执行sed的编辑 -i命令报错sed: 1: "test.txt": undefined label ‘est.txt’或sed: 1: "2a\test\": extra characters after \ at the end of a command
问题一 sed编辑命令:[sed -i 's/a/b/g' test.txt] 报错:sed: 1: "test.txt": undefined label 'est.txt' ...
- sed 命令编辑文本
1.sed 概述 sed 是一个非交互式文本编辑器.它能够对文本文件和标准输入进行编辑,标准输入能够是来自键盘输入.文件重定向.字符串.变量.甚至来自于管道文本. 2.sed工作流程简述 sed在处理 ...
- sed 技巧
八.流编辑器sed sed ':a;N;$!ba;s/0.01/0.0001/g' file:a 创建一个labelaN 将下一行读入到模式空间$! 如果不是最后一行,ba跳转到label a处s/0 ...
- sed
命令行格式为: sed [-nefri] ‘command’ 输入文本/文件 常用选项: -n∶取消默认的输出,使用安静(silent)模式.在一般 sed 的用法中 ...
- Shell文本处理 - 匹配与编辑
正则表达式 符号 含义 . 匹配任意ASCII中任意单个字符,或是字母,或是数字 ^ 匹配行首 $ 匹配行尾 * 匹配任意字符或前一个的一次或多次重复 \ 转义,被转义的有$ . ‘ “ * [ ] ...
- linux中sed的用法【转】
sed命令行格式为: sed [-nefri] ‘command’ 输入文本/文件 常用选项: -n∶取消默认的输出,使用安静(silent)模式.在一般 sed 的 ...
- grep, sed, awk
这几个工具是shell中非常好用的文本流处理工具,可以进行查找,编辑或者分析等工作,它们都支持正则表达式,也支持使用shell内置的变量 grep grep是一个字符串比较工具,用于从文件中提取满足条 ...
- Shell之sed用法 转滴
通过例子学习sed的用法 1,sed介绍 sed可删除(delete).改变(change).添加(append).插入(insert).合.交换文件中的资料行,或读入其它档的资料到 文> ...
随机推荐
- BS架构和CS架构
B:browser 浏览器 S:server 服务器 C:client 客户端 BS:浏览器和服务器的关系,通过浏览器来访问服务器.比如:新浪.百度.等等. 优点:只要有浏 ...
- Linux-ubuntu命令-文件、磁盘管理
.文件管理 <1>查看文件信息:ls ls是英文单词list的简写,其功能为列出目录的内容,是用户最常用的命令之一,它类似于DOS下的dir命令. Linux文件或者目录名称最长可以有26 ...
- KVM + LinuxBridge 的网络虚拟化解决方案实践
目录 文章目录 目录 前言 Linux bridge 的基本操作 创建 Bridge 将 veth pair 连上 Bridge 为 Bridge 配置 IP 地址 将物理网卡接口设备挂靠 Bridg ...
- nginx不记录指定文件类型日志
1.指定记录文件日志记录的内容. vim /usr/local/nginx/conf/nginx.conf如下部分: log_format dd '$remote_addr $http_x_forwa ...
- [转] 浅谈JS中的变量及作用域
Situation One <script> var i; function sayHello() { var x=100; alert(x); x++; } sayHello(); ...
- centos7.5 安装python3.7
一,官网下载最新版python安装包 二,解压并编译安装 ,解决依赖关系 yum -y install epel-release libffi-devel zlib* ,解压编译 .tgz cd Py ...
- Java编程思想—八皇后问题(数组法、堆栈法)
Java编程思想-八皇后问题(数组法.堆栈法) 实验题目:回溯法实验(八皇后问题) 实验目的: 实验要求: 实验内容: (1)问题描述 (2)实验步骤: 数组法: 堆栈法: 算法伪代码: 实验结果: ...
- MySQL各种函数/语法
@limit pos,len select * from table limit 5,10 只显示查出结果的6-15行 ---------------------------------------- ...
- 拉格朗日乘法与KKT条件
问题的引出 给定一个函数\(f\),以及一堆约束函数\(g_1,g_2,...,g_m\)和\(h_1,h_2,...,h_l\).带约束的优化问题可以表示为 \[ \min_{X \in R^n}f ...
- adb将Apk内置到系统中(system/priv-app)
https://blog.csdn.net/starhosea/article/details/78697007 so文件的处理是目前遇到过的问题.文章中解释了. 正文: 有时候我们在Android ...