awk - $2に文字列が含まれている場合は行を削除する

awk - $2に文字列が含まれている場合は行を削除する

$ 2に文字列が含まれている場合は、行全体を削除したいと思います。

文字列の例 = "hello123"

入力例:

Hey:hello123
Hey:hello

予想出力:

Hey:hello

答え1

<input.txt awk -F: '$2 !~ "hello123"' >output.txt

フィールド区切り文字に設定し、:2番目の列に含まれていないすべての行を印刷します。hello123


これがスクリプトの一部になる場合は、検索パターンとともにawkにシェル変数を渡すことが役に立ちます。

var='hello123'
awk -F: -v pattern="$var" '$2 !~ pattern' input.txt > output.txt

答え2

Command

First method

sed -n -i '/^Hey:hello123$/!p'  filename


output

cat filename
Hey:hello


second method

python

#!/usr/bin/python

    import re
    k=open('l.txt','r')
    u=open('o.txt','w')
    for i in k:
        if "Hey:hello123" not in i:
            u.write(i)

output
cat o.txt 
Hey:hello


Third method

 awk -F ":" '$2 != "hello123" {print $0}' filename

    If you want to replace in orginal file use below method

    awk -F ":" '$2 != "hello123" {print $0}' l.txt >temperory && mv temperory filename


    output

    Hey:hello

関連情報