Join 명령의 자동 형식은 어떻게 작동합니까?
예는 다음과 같습니다. $ cat file1 hello there $ cat file2 some,very,long,line,hello,csv some,very,long,line,nope,csv $ join -t, -1 1 -2 5 file1 file2 hello,some,very,long,line,csv 이는 문서화된 방식으로 작동합니다. 연결된 필드가 왼쪽으로 당겨지고 나머지 필드가 인쇄됩니다. 하지만 내가 원하는 출력은 CSV(file2) 열 순서를 유지하는 것입니다. CSV 필드 번호를 명시적...