Text-Processing
如何在兩列中列印 2 個文本
我在不同的文件中有 2 個文本
file1
和file2
. 我需要一個將file1
andfile2
作為參數並在終端上列印的命令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.
對於大小為 10 的列,距離為 20 個字元
paste <(fold file1 -w 10) <(fold file2 -sw 10) | pr -t -e20
fold
選項
-w
是列寬-s
避免逐行分隔單詞
pr
選項
-t
導致省略頁眉和頁腳(日期、時間和頁碼)-eN
設置N
為替換製表符的空格數paste