Unix 열 명령의 "행 앞에 열 채우기" 옵션

Unix 열 명령의 "행 앞에 열 채우기" 옵션

에 따르면 man column:

 -x      Fill columns before filling rows.

이 옵션은 별 효과가 없는 것 같습니다. 사용 방법을 알고 계십니까?

답변1

이것은 옵션과 함께 작용합니다 -c Output is formatted for a display columns wide.. 예를 들어 설명하는 것이 가장 좋습니다.

cat test.file2
1 a b c d e f g h
2 a b c d e f g h
3 a b c d e f g h
4 a b c d e f g h
5 a b c d e f g h
6 a b c d e f g h

출력 형식이 80열 너비를 표시하도록 형식화되면 column행이 먼저 채워집니다.

column -c 80 test.file2 
1 a b c d e f g h       3 a b c d e f g h       5 a b c d e f g h
2 a b c d e f g h       4 a b c d e f g h       6 a b c d e f g h

옵션이 전달 되면 -x Fill columns before filling rows.반대 현상이 발생합니다.

column -c 80 -x test.file2 
1 a b c d e f g h       2 a b c d e f g h       3 a b c d e f g h
4 a b c d e f g h       5 a b c d e f g h       6 a b c d e f g h

답변2

주문 작성:

$ cat col
01 02 03 04 05 06 07
08 09 10 11 12 13 14 
15 16 17 18 19 20 21 
22 23 24 25 26 27 28 
29 30 31 32

$ column col
01 02 03 04 05 06 07    15 16 17 18 19 20 21    29 30 31 32
08 09 10 11 12 13 14    22 23 24 25 26 27 28 

$ column -x col
01 02 03 04 05 06 07    08 09 10 11 12 13 14    15 16 17 18 19 20 21 
22 23 24 25 26 27 28    29 30 31 32

이는 행/열 수에도 영향을 미칩니다.

$ column col
01 02 03 04    13 14 15 16    25 26 27 28    37 38 39 40
05 06 07 08    17 18 19 20    29 30 31 32    41
09 10 11 12    21 22 23 24    33 34 35 36

$ column -x col
01 02 03 04    05 06 07 08    09 10 11 12    13 14 15 16    17 18 19 20 
21 22 23 24    25 26 27 28    29 30 31 32    33 34 35 36    37 38 39 40
41

관련 정보