Awk

Linux grep 文件 1 中的內容在文件 2 中

  • November 27, 2017

文件 1:

1234567890123456,00,00,000
1111111111111111,11,11,1111

文件 2

1111111111111111,11,11,1111
9999999999999999,99,99,999

所以我想知道文件 1 中的內容是文件 2 中的內容

輸出:

1111111111111111,11,11,1111

使用以下命令我能夠解決我的問題

grep -Fxf file1 file2

引用自:https://unix.stackexchange.com/questions/407309