题解 | #去掉空行#
去掉不需要的单词
http://www.nowcoder.com/practice/838a3acde92c4805a22ac73ca04e503b
grep -vE 'b|B' nowcoder.txt
sed '/b\|B/d' nowcoder.txt
awk '!/b|B/' nowcoder.txt
去掉不需要的单词
http://www.nowcoder.com/practice/838a3acde92c4805a22ac73ca04e503b
grep -vE 'b|B' nowcoder.txt
sed '/b\|B/d' nowcoder.txt
awk '!/b|B/' nowcoder.txt
相关推荐