0
我是linux命令新手,幫助將不勝感激。從file1打印匹配包含文件2的行
File 1:
1:[email protected]:name1
2:[email protected]:name2
3:[email protected]:name3
4:[email protected]:name4
....
File 2:
[email protected]
[email protected]
.....
File 3: should print
2:[email protected]:name2
4:[email protected]:name4
...
我想從文件中的一個匹配打印匹配行的文件2.
我想你可能想'grep的-w -f文件2 file1'(因爲如果文件2有[email protected],然後[email protected]和[email protected]和[email protected]會比賽)。 – SheetJS
@Nirk我覺得它可能是'-w'或'-F',我總是忘記。謝謝。 – squiguy
你需要兩個:'grep -w -F -f file2 file1> file3'。雖然仍然可能有誤報。 – jfs