Option „Spalten vor Zeilen füllen“ im Unix-Spaltenbefehl

Option „Spalten vor Zeilen füllen“ im Unix-Spaltenbefehl

Entsprechend man column:

 -x      Fill columns before filling rows.

Diese Option scheint nichts zu bewirken. Irgendeine Idee, wie man sie benutzt?

Antwort1

Dies kommt mit der -c Output is formatted for a display columns wide.Option ins Spiel. Am besten erklärt mit einem Beispiel

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

Wenn die Ausgabe für eine Anzeige mit 80 Spalten formatiert ist, columnwerden zuerst die Zeilen ausgefüllt

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

Wenn die -x Fill columns before filling rows.Option verstrichen ist, passiert das Gegenteil

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

Antwort2

Reihenfolge der Befüllung:

$ 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

Was sich auch auf die Anzahl der Zeilen/Spalten auswirken kann:

$ 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

verwandte Informationen