Chinaunix首页 | 论坛 | 博客
  • 博客访问: 7093261
  • 博文数量: 3857
  • 博客积分: 6409
  • 博客等级: 准将
  • 技术积分: 15948
  • 用 户 组: 普通用户
  • 注册时间: 2008-09-02 16:48
个人简介

迷彩 潜伏 隐蔽 伪装

文章分类

全部博文(3857)

文章存档

2017年(5)

2016年(63)

2015年(927)

2014年(677)

2013年(807)

2012年(1241)

2011年(67)

2010年(7)

2009年(36)

2008年(28)

分类: LINUX

2015-04-16 17:18:54

sed一些参数的用法

[日期:2015-04-16] 来源:Linux社区  作者:Linux [字体:  ]

sed一些参数的用法,把/etc/passwd 复制到/root/test.txt,用sed打印所有行 
打印test.txt的3到10行        
打印test.txt 中包含 'root' 的行      
删除test.txt 的15行以及以后所有行     
删除test.txt中包含 'bash' 的行      
替换test.txt 中 'root' 为 'toor'     
替换test.txt中 '/sbin/nologin' 为 '/bin/login'  
删除test.txt中5到10行中所有的数字     
删除test.txt 中所有特殊字符(除了数字以及大小写字母)
把test.txt中第一个单词和最后一个单词调换位置  
把test.txt中出现的第一个数字和最后一个单词替换位置 
把test.txt 中第一个数字移动到行末尾     
在test.txt 20行到末行最前面加 'aaa:'   

我做的答案

sed -n '1,$'p test.txt
sed -n '3,10'p test.txt
sed -n '/root/'p test.txt
sed '15,$'d test.txt
sed '/bash/'d test.txt
sed -r 's/(root)/toor/g' -n test.txt
sed -r 's@(/sbin/nologin)@/bin/login@g' test.txt
sed -r '5,10s/[0-9]//g' test.txt
sed -r 's/[^a-zA-Z0-9]//g' test.txt
sed -r 's@(^[^:]+)(:.*:)([^:]+$)@\3\2\1@' test.txt
sed -r 's@([0-9]+)(.*:)([^:]+$)@\3\2\1@' test.txt
sed -r 's@([0-9]+)(.*)($)@\2\3\1@' test.txt
sed -r '20,$s@(^.*$)@aaa:\1@' test.txt

在sed命令中引入shell变量 

Linux下Shell编程——sed命令基本用法 

Unix文本处理工具之sed  

sed 高级用法 

sed命令详解与示例 

本文永久更新链接地址

阅读(768) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~