1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00
tldr/pages.ko/common/combine.md
HoJeong Im 7979f194b3
co*: add Korean translation (#14059)
* co*: add Korean trnaslation

* fix: fix filename
2024-10-08 10:23:24 +02:00

756 B

combine

두 파일의 줄에서 설정 작업 수행. 출력되는 줄의 순서는 첫 번째 파일의 줄 순서에 따라 결정됨. 참고: diff. 더 많은 정보: https://joeyh.name/code/moreutils/.

  • 지정된 두 파일 모두에 있는 라인을 출력:

combine {{경로/대상/파일1}} and {{경로/대상/파일2}}

  • 첫 번째 파일에는 있지만, 두 번째 파일에는 없는 줄을 출력:

combine {{경로/대상/파일1}} not {{경로/대상/파일2}}

  • 지정된 파일 중 하나에 있는 줄을 출력:

combine {{경로/대상/파일1}} or {{경로/대상/파일2}}

  • 지정된 파일 중 정확히 하나에만 있는 줄을 출력:

combine {{경로/대상/파일1}} xor {{경로/대상/파일2}}