bashで特定の文字列を含むファイルを削除するワンライナー

for file in *(.); do grep -q '特定の文字列' "$file" && rm "$file"; done