-vで指定した正規表現の否定にマッチする。
% grep -v
ヘルプにこう書いてある。
-v, --invert-match select non-matching lines
使用例
% cat textfile a b c % grep -v b textfile a c
コマンドで覚えるLinux
コマンドで覚えるLinux
-vで指定した正規表現の否定にマッチする。
% grep -v
ヘルプにこう書いてある。
-v, --invert-match select non-matching lines
% cat textfile a b c % grep -v b textfile a c
Comments