首页 > 其他分享 >sed练习

sed练习

时间:2022-09-07 10:34:22浏览次数:69  
标签:练习 number sed ecs 76840553 txt root

1.sed打印文本第一行和最后一行

[root@ecs-76840553 sed]# cat chongfu.txt 
test 30  
Hello 95  
Linux 85 
test 30  
Hello 95  
Linux 85 
test 30  
Hello 95  
Linux 85
[root@ecs-76840553 sed]# sed -n '1p' chongfu.txt  #打印第一行
test 30  
[root@ecs-76840553 sed]# sed -n '$p' chongfu.txt  #打印第最后一行
Linux 85
[root@ecs-76840553 sed]# 

2.删除第一行;添加11到第一行文本;修改3为333


[root@ecs-76840553 sed]# cat number.txt
1
2
3
[root@ecs-76840553 sed]# sed -i '1d' number.txt
[root@ecs-76840553 sed]# cat number.txt
2
3
[root@ecs-76840553 sed]# sed -i '1i11' number.txt
[root@ecs-76840553 sed]# cat number.txt
11
2
3
[root@ecs-76840553 sed]# sed -i '/3/c333' number.txt
[root@ecs-76840553 sed]# cat number.txt
11
2
333
[root@ecs-76840553 sed]#

 

 

标签:练习,number,sed,ecs,76840553,txt,root
From: https://www.cnblogs.com/joyware/p/16664425.html

相关文章

  • shell脚本之sed详解 (sed命令 , sed -e , sed s/ new / old / ... )
    shell脚本之sed详解(sed命令,sed-e,seds/new/old/...) (一) Sed是一个非交互性文本流编辑器。它编辑文件或标准输入导出的文本拷贝。vi中的正则表达......
  • onMouseUp/onClick/onMouseDown
    触发顺序onMouseDown 点击鼠标右键也会触发,如果按住鼠标不松的话在区域外松开不会触发onMouseUp 点击鼠标右键也会触发, 如果按住鼠标不松的话在区域外松开会触发......
  • git lfs error:batch response: HTTP/2 cannot be used except with TLS
    自己在腾讯云通过gitea架设的git服务器,使用了lfs。commit和push都很正常,不过换了台机器clone时遇到问题:gitlfspullbatchresponse:HTTP/2cannotbeusedexceptwi......
  • 练习
    https://raw.githubusercontent.com/zhiwehu/Python-programming-exercises/master/100%2B%20Python%20challenging%20programming%20exercises.txt100+Pythonchallengi......
  • 【The connection to the server localhost:8080 was refused - did you specify the
    问题k8s报错$kubectlgetnodeTheconnectiontotheserverlocalhost:8080wasrefused-didyouspecifytherighthostorport?解决方法将master节点中的/......
  • 第六章 2 函数-参数 练习题
    第六章2函数-参数练习题[进阶拓展]1Python函数调用的时候参数的传递方式是值传递还是引用传递?python函数的参数传递有:位置参数、默认参数、可变参数、关键字参数函数......
  • linux教材一、二章 练习及遇到的问题解决过程
      暑假期间我将VMware的ubuntu虚拟机重新装载了(之前崩了),并每天在终端练习运行命令行。开学后当我又重新打开ubuntu时,发现又出现了问题,如下图所示:     提示......
  • 第六章 1 函数-基础 练习题
    第六章1函数-基础练习题[基础知识]1可以使用内置函数_______________查看包含当前作用域内所有全局变量和值的字典globals().print2可以使用内置函数_______________......
  • matlab练习程序(VAR模型)
    VAR模型称为向量自回归模型,可以对多组变量之间的关系进行建模,是AR模型的多维扩展。比如有两个变量X和Y,AR模型建模场景是X只和X过去的状态有关系,VAR模型建模场景则是X同时......
  • 牛客练习赛102
    A清楚姐姐的学术群intmain(){ intn=read(),m=read(),a=read(),b=read(); for(inti=1;i<=n;i++)people[i].push_back(0); for(inti=1;i<=......