다른 파일에 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
단어를 한 줄씩 분리하지 마세요.
pr
옵션-t
머리글과 바닥글(날짜, 시간, 페이지 번호)이 생략됩니다.-eN
N
탭 문자를 대체할 공백 수 설정paste