他のファイルには2つのテキストがあり、引数として受け入れてfile1
端末に印刷するfile2
コマンドが必要です。file1
file2
This is text 1. This is This is text 2. This is
text 1.This is text 1. This text 2.This is text 2. This
is text 1. This is text 1. is text 2. This is text 2.
This is text 1. This is text 2.
ベストアンサー1
サイズが10で距離が20文字の列の場合
paste <(fold file1 -w 10) <(fold file2 -sw 10) | pr -t -e20
fold
オプション-w
列の幅です-s
単語を1行ずつ分離しないでください。
pr
オプション-t
ヘッダーとフッター(日付、時刻、ページ番号)は省略されます。-eN
N
タブ文字を置き換えるスペースの数を設定paste