|
|
|
|
|
linguist.page@gmail.com
Home
»
Computational Linguistics
»
Computing Fundamentals
»
The Linux Command Line (CLI)
»
Comparing Files
Compare two files line by line
Type here
diff file1.txt file2.txt
Find lines common to two sorted files
Type here
comm -12 file1_sorted.txt file2_sorted.txt
Find lines only in the first file
Type here
comm -23 file1_sorted.txt file2_sorted.txt
← Previous
Next →