Answers for "grep not include"

1

grep exclude

grep -R "what_you_want_to_capture" ./path_to_file/a.txt | grep -v "exclude this"
Posted by: Guest on January-19-2021
0

grep not include

grep -v "unwanted_word" file | grep XXXXXXXX
Posted by: Guest on March-18-2021

Browse Popular Code Answers by Language