Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
268 views
in Technique[技术] by (71.8m points)

diff - difference between the content of two files

I have two files one file subset of other and i want to obtain a file which has contents not common to both.for example

File1

apple
mango
banana
orange
jackfruit
cherry
grapes
eggplant
okra
cabbage

File2

apple
banana
cherry
eggplant
cabbage

The resultant file, difference of above two files

mango
orange
jackfruit
grapes
okra

Any ideas on this are appreciated.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can sort the files then use comm:

$ comm -23 <(sort file1.txt) <(sort file2.txt)
grapes
jackfruit
mango
okra
orange

You might also want to use comm -3 instead of comm -23:

  -1              suppress lines unique to FILE1
  -2              suppress lines unique to FILE2
  -3              suppress lines that appear in both files

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...