题解 | #去掉所有包含this的句子#
去掉所有包含this的句子
https://www.nowcoder.com/practice/2c5a46ef755a4f099368f7588361a8af
#!/bin/bash # grep -v "this" nowcoder.txt # sed '/this/d' nowcoder.txt # awk '!/this/ {print $0}' nowcoder.txt awk '!/this/' nowcoder.txt
去掉所有包含this的句子
https://www.nowcoder.com/practice/2c5a46ef755a4f099368f7588361a8af
#!/bin/bash # grep -v "this" nowcoder.txt # sed '/this/d' nowcoder.txt # awk '!/this/ {print $0}' nowcoder.txt awk '!/this/' nowcoder.txt
相关推荐