题解 | #去掉空行#
去掉空行
http://www.nowcoder.com/practice/0372acd5725d40669640fd25e9fb7b0f
最简方法
#! /bin/bash cat nowcoder.txt | awk NF
法2
#! /bin/bash awk '{if($0!="") {print $0 }}' nowcoder.txt
去掉空行
http://www.nowcoder.com/practice/0372acd5725d40669640fd25e9fb7b0f
#! /bin/bash cat nowcoder.txt | awk NF
#! /bin/bash awk '{if($0!="") {print $0 }}' nowcoder.txt
相关推荐