1、在所有行后添加空行
[root@centos79 test]# cat a.txt a g r e i x k like a f g liker s t 2 a b d s i [root@centos79 test]# awk '{print $0 "\n"}' a.txt a g r e i x k like a f g liker s t 2 a b d s i
2、
[root@centos79 test]# cat a.txt a g r e i x k like a f g liker s t 2 a b d s i [root@centos79 test]# awk '{if(NR%2 == 0){print $0 "\n"}else {print $0}}' a.txt ## 偶数后添加空行 a g r e i x k like a f g liker s t 2 a b d s i [root@centos79 test]# awk '{if(NR%2 == 0){print "\n"$0}else {print $0}}' a.txt ## 偶数前添加空行 a g r e i x k like a f g liker s t 2 a b d s i
3、
[root@centos79 test]# cat a.txt a g r e i x k like a f g liker s t 2 a b d s i [root@centos79 test]# awk '{if($0 ~ /f/){print $0 "\n"} else {print $0}}' a.txt ## 利用正则 a g r e i x k like a f g liker s t 2 a b d s i [root@centos79 test]# awk '{if($0 ~ /g/){print $0 "\n"} else {print $0}}' a.txt ## 利用正则 a g r e i x k like a f g liker s t 2 a b d s i
4、
[root@centos79 test]# cat a.txt a g r e i x k like a f g liker s t 2 a b d s i [root@centos79 test]# awk 'BEGIN{printf "\n"}{print $0}' a.txt ##行首添加空行 a g r e i x k like a f g liker s t 2 a b d s i [root@centos79 test]# awk '{print $0}END{printf "\n"}' a.txt ## 行尾添加空行 a g r e i x k like a f g liker s t 2 a b d s i [root@centos79 test]# awk 'BEGIN{printf "\n"}{print $0}END{printf "\n"}' a.txt ## 行首、行尾同时添加空行 a g r e i x k like a f g liker s t 2 a b d s i
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。