题解 | #去掉所有包含this的句子#
去掉所有包含this的句子
https://www.nowcoder.com/practice/2c5a46ef755a4f099368f7588361a8af
#!/bin/bash # 使用grep命令排除包含"this"的行 grep -v "this"
去掉所有包含this的句子
https://www.nowcoder.com/practice/2c5a46ef755a4f099368f7588361a8af
#!/bin/bash # 使用grep命令排除包含"this"的行 grep -v "this"
相关推荐