题解 | #去掉所有包含this的句子#
去掉所有包含this的句子
http://www.nowcoder.com/practice/2c5a46ef755a4f099368f7588361a8af
方法1
grep
命令 -v
显示不包含匹配文本的所有行
grep -v 'this'
方法2
sed
命令 -> d
删除 -> //
包含要搜索的字符串
sed '/this/d'
方法3
awk
命令,检查当前 $0
不包含 this
随机输出
awk '$0!~/this/ {print $0}'