2つの列に2つのテキストを印刷する方法

2つの列に2つのテキストを印刷する方法

他のファイルには2つのテキストがあり、引数として受け入れてfile1端末に印刷するfile2コマンドが必要です。file1file2

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 ヘッダーとフッター(日付、時刻、ページ番号)は省略されます。
    • -eNNタブ文字を置き換えるスペースの数を設定paste

おすすめ記事