단일 공백을 구분 기호로 사용하여 여러 파일을 함께 붙여넣는 방법

단일 공백을 구분 기호로 사용하여 여러 파일을 함께 붙여넣는 방법

다음은 3개의 파일입니다.

file1   file2   file3
1 2 3   1 1 1   3 3 3
2 1 3   1 1 1   3 3 3
0 0 0   1 1 1   3 3 3

나는 그것들을 결합하여 다음과 같은 최종 파일을 얻고 싶습니다.

1 2 3 1 1 1 3 3 3
2 1 3 1 1 1 3 3 3
0 0 0 1 1 1 3 3 3

하지만 내가 사용할 때 :

paste file1 file2 file3 > file4

출력(파일 4)에 공백이 있습니다.

1 2 3   1 1 1   3 3 3
2 1 3   1 1 1   3 3 3
0 0 0   1 1 1   3 3 3

이런 공백이 보이지 않게 하려면 어떻게 해야 할까요?

답변1

나는 노력했다

paste -d ' ' file1 file2 file3 > file4

좋은 결과. MacOS에서 테스트되었습니다.

답변2

노력하다 paste -d ' ' file1 file2 file3. 매뉴얼에서:

 -d list     Use one or more of the provided characters to replace the newline characters
             instead of the default tab.  The characters in list are used circularly, i.e., when
             list is exhausted the first character from list is reused.  This continues until a
             line from the last input file (in default operation) or the last line in each file
             (using the -s option) is displayed, at which time paste begins selecting characters
             from the beginning of list again.

             The following special characters can also be used in list:

             \n    newline character
             \t    tab character
             \\    backslash character
             \0    Empty string (not a null character).

             Any other character preceded by a backslash is equivalent to the character itself.

관련 정보