博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux/shell 文本文件删除/删掉空行
阅读量:6212 次
发布时间:2019-06-21

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

分别用sed awk perl grep 实现:

1 sed '/^$/d' input.txt > output.txt    #output file: output.txt2 sed -i '/^$/d' input.txt      #output file: input.txt3 awk 'NF > 0' input.txt > output.txt     #output file: output.txt4 perl -i.backup -n -e "print if /\S/" input.txt   #output file: input.txt.backup5 grep -v '^$' input.txt > output.txt    #output file: output.txt

 

转载地址:http://ncsja.baihongyu.com/

你可能感兴趣的文章
【OpenMesh】使用网格的属性和特征
查看>>
Scrapy开发
查看>>
js获取url参数值
查看>>
cocos2d-x v3.0新特性及使用
查看>>
C#编程总结(二)多线程基础
查看>>
SharePoint Error occurred in deployment step 'Recycle IIS Application Pool': 0x80070005:拒绝访问...
查看>>
escape()、encodeURI()、encodeURIComponent()区别详解 (转)
查看>>
Python 反编译工具uncompyle2
查看>>
LINQ to SQL 建立实体类
查看>>
android存储阵列数据SharedPreferences
查看>>
Kibana+Logstash+Elasticsearch 日志查询系统 - 爱开卷360 - 博客园
查看>>
(笔试题)程序运行时间
查看>>
jQuery Ajax 操作函数及deferred对象
查看>>
串口编程(基于tiny4412)
查看>>
Spring面试题一
查看>>
SQL Server Profiler工具
查看>>
机器学习是什么--周志华
查看>>
猜你喜欢-----推荐系统原理介绍
查看>>
一个适用于层级目录结构的makefile模版
查看>>
【leetcode】Candy(python)
查看>>