当前位置:  技术问答>linux和unix

用shell脚本删除不含特定关键字的行

    来源: 互联网  发布时间:2016-10-02

    本文导语:  文本内容如下: xxxx /home/this/a.txt /home/this/a.txt /home/this/a.txt /home/this/a.txt /home/this/a.txt /home/this/a.txt /home/kkk/a.txt /home/ggg/a.txt 只要文本行不带/home/this/就删除掉该行,如何实现,最终得到结果如下: /home/this/a.txt /home/thi...

文本内容如下:
xxxx
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt
/home/kkk/a.txt
/home/ggg/a.txt

只要文本行不带/home/this/就删除掉该行,如何实现,最终得到结果如下:

/home/this/a.txt
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt


|

你用的是linux还是unix环境啊?是在bash里么?
我这里就可以

[root@test ~]# cat testfile
xxxxxxxx
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt
/home/kkk/a.txt
/home/ggg/a.txt
[root@test ~]# sed -i -e '//home/this//!d' testfile
[root@test ~]# cat testfile
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt

|
不知道咋回事了 我用ksh一样好用

#!/bin/ksh
echo "---before sed----"
cat testfile
sed -i -e '//home/this//! d' testfile
echo "---after sed----"
cat testfile
# ./test.sh
---before sed----
xxxx
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt
/home/kkk/a.txt
/home/ggg/a.txt
---after sed----
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt
/home/this/a.txt

我的版本
ksh-20100202-1.el5_5.1 
sed-4.1.5-5.fc6

    
 
 

您可能感兴趣的文章:

  • Web服务器/前端 iis7站长之家
  • 急救!关于Shell脚本删除过期文件的问题,Shell脚本达人乱入
  • shell 脚本中命令别名在脚本外无法使用
  • 傻瓜问题,请问shell编程和shell脚本编程的关系
  • C语言调用shell脚本后,通过何种方法能获取脚本中变量的值
  • 想用shell脚本定时执行另一个脚本
  • 一个shell执行另一个带参数shell脚本????????????
  • 如何给shell脚本加密,脚本中有密码。最好是比较直接的,不要说让用 shc
  • Shell脚本调用Sql脚本并向其中传递变量
  • 请问,Shell中如何执行另外一个Shell脚本?
  • 如何传递参数给linux shell 脚本(当脚本从标准输入而不是从文件获取时)
  • nohup执行的shell脚本,全局变量不能传递到脚本中使用吗?
  • cd、zip等命令在shell提示符下能执行,在shell脚本中为什么不能执行呢?
  • shell脚本问题 关于父脚本和子脚本的问题
  • shell脚本错误输出
  • 请教shell脚本启动程序
  • 关于shell脚本的。
  • 关于arm linux下的别名配置脚本如何在进入用户时让shell执行的问题,如bashrc,profile,.bash_profile等脚本,寻求高手解答
  • 高分请教关于Shell脚本执行中断问题?
  • linux shell脚本
  • shell下面如何获取某个关键字后面的6位字符?
  • linux中 写shell程序,用于统计文件中关键字的个数
  • 如何写这样的一个Shell:删除一个文件中某关键字所在的行,然后在这行插入新的文本。
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 如何用shell实现向文件删除或添加一行信息
  • shell 删除目录下指定的文件?
  • bash shell 如何实现删除文件中的各行字符呢?
  • shell脚本里面,用什么指令删除字符串中子串
  • 在shell脚本中如何使用FTP一次删除远端的多个文件?
  • 在UNIX中,怎样写一个SHELL,删除目录下所有文件的前二行。
  • 请指点:用Shell编程完成删除7天前的日志文件
  • 请教一下,如何用shell 编程实现删除超过一定时间以前的文件?
  • 用shell编程,如何循环删除文件?
  • shell如何实现删除指定若干行?
  • linux的shell删除文件中100行的,每行的前6个字符的问题?
  • 在shell中如何删除一个文件的指定的行
  • 在shell中如何删除一个文件的指定几行
  • 用SHELL如何实现在指定的文件位置,删除或者增加一行
  • [请教]shell中删除指定行
  • 求一个shell脚本 统计文件数目并删除一些文件
  • 删除文件的shell脚本编写,条件内详
  • shell 删除空字符开头的行
  • 如何删除目录中文件名小于某个字符串的所有文件 shell
  • shell命令:用sed如何删除一个文本文件的所有行
  • Centos6下安装Shell下文件上传下载rz,sz命令
  • 不同类型的shell*(K SHELL , C SHELL) 用命令怎么切换?
  • linux bash shell命令:grep文本搜索工具简介
  • 我在执行shell时,想在shell里直接向mysql数据库插入数据,我该如何写shell。
  • Linux下指定运行时加载动态库路径及shell下执行程序默认路径
  • 菜鸟问问题:shell是什么呢?普通的ls、cp、pwd这些命令算不算shell呢?如何把自己写的文件变成shell呢?
  • linux bash shell命令:文本搜索工具grep中用于egrep和 grep -E的元字符扩展集
  • shell变量和子shell的问题请教
  • linux bash shell命令:文本搜索工具Grep命令选项及实例
  • 请问“当前shell”和“子shell”的区别?
  • linux bash shell命令:文本搜索工具grep正则表达式元字符集(基本集)


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3