Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

awk how to remove lines in one file that are found in another file

# Example 1
awk 'NR==FNR{a[$0];next} !($0 in a)' file_2 file_1
# Where:
#	- this returns all lines in file_1 that are not found in file_2
# See source for more info on how the command works
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #awk #remove #lines #file #file
ADD COMMENT
Topic
Name
6+3 =