単一のスペースを区切り文字として使用して複数のファイルを一緒に貼り付ける方法

単一のスペースを区切り文字として使用して複数のファイルを一緒に貼り付ける方法

以下は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.

関連情報