码迷,mamicode.com
首页 > 系统相关 > 详细

linux/shell 文本文件删除/删掉空行

时间:2014-08-02 12:17:53      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   文件   div   linux   log   file   

分别用sed awk perl grep 实现:

1 sed /^$/d input.txt > output.txt    #output file: output.txt
2 sed -i /^$/d input.txt      #output file: input.txt
3 awk NF > 0 input.txt > output.txt     #output file: output.txt
4 perl -i.backup -n -e "print if /\S/" input.txt   #output file: input.txt.backup
5 grep -v ^$ input.txt > output.txt    #output file: output.txt

 

linux/shell 文本文件删除/删掉空行,布布扣,bubuko.com

linux/shell 文本文件删除/删掉空行

标签:style   blog   color   文件   div   linux   log   file   

原文地址:http://www.cnblogs.com/emanlee/p/3886656.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!