47 文字
1 分
unixコマンドでgrepの否定条件
-vで指定した正規表現の否定にマッチする。
% grep -vヘルプにこう書いてある。
-v, --invert-match select non-matching lines使用例
% cat textfileabc
% grep -v b textfileac unixコマンドでgrepの否定条件
https://blog.teraren.com/posts/grep-invert/