- 论坛徽章:
- 145
|
本帖最后由 jason680 于 2015-04-24 08:36 编辑
回复 1# fenghedong_007
$ man col
...
-b Do not output any backspaces, printing only the last character
written to each column position.
...
ESC-7 reverse line feed (escape then 7)
ESC-8 half reverse line feed (escape then 8)
ESC-9 half forward line feed (escape then 9)
backspace moves back one column (8); ignored in the first column
$ echo -e "12\x073\x0845\x086"
1246
$ echo -e "12\x073\x0845\x086" | col
1246
$ echo -e "12\x073\x0845\x086" | col -b
1246
$ echo -e "12\x073\x0845\x086" | hexdump -C
00000000 31 32 07 33 08 34 35 08 36 0a |12.3.45.6.|
0000000a
$ echo -e "12\x073\x0845\x086" | col | hexdump -C
00000000 31 32 33 08 34 35 08 36 0a |123.45.6.|
00000009
$ echo -e "12\x073\x0845\x086" | col -b | hexdump -C
00000000 31 32 34 36 0a |1246.|
00000005
|
|