#!/bin/bash
# grep -v "this" nowcoder.txt
# sed '/this/d' nowcoder.txt
# awk '!/this/ {print $0}' nowcoder.txt
awk '!/this/' nowcoder.txt