1
file1とfile2の最初の4つの列を比較します。私はfile1のすべての行+ file2のfile1にない行を出力したい。2つのファイルの列を比較し、一致しない印刷
File1:
2435 2 2 7 specification 9-8-3-0
57234 1 6 4 description 0-0 55211
32423 2 44 3 description 0-0 24242
File2:
2435 2 2 7 specification
7624 2 2 1 namecomplete
57234 1 6 4 description
28748 34 5 21 gateway
32423 2 44 3 description
832758 3 6 namecomplete
output:
2435 2 2 7 specification 9-8-3-0
57234 1 6 4 description 0-0 55211
32423 2 44 3 description 0-0 24242
7624 2 2 1 namecomplete
28748 34 5 21 gateway
832758 3 6 namecomplete
どのように一致しないものを印刷するのか分かりません。
"if(!(key in mem))print"この印刷を変更して行を変更できるようにするにはどうすればよいですか? – diborbi
@diborbi 'print $ 1 $ 3"のように書き留めてください。 'print'は' print $ 0'を意味するショートカットです –