mirror of
https://github.com/tio/tio.git
synced 2026-05-01 14:57:59 +02:00
Complete bit reorder feature for release
This commit is contained in:
parent
5b8f33bd78
commit
4924969268
3 changed files with 5 additions and 1 deletions
|
|
@ -167,6 +167,8 @@ Map DEL to BS on output
|
||||||
Map NL to CR-NL on output
|
Map NL to CR-NL on output
|
||||||
.IP "\fBOLTU"
|
.IP "\fBOLTU"
|
||||||
Map lowercase characters to uppercase on output
|
Map lowercase characters to uppercase on output
|
||||||
|
.IP "\fBMSB2LSB"
|
||||||
|
Map MSB bit order to LSB on output
|
||||||
.P
|
.P
|
||||||
If defining more than one flag, the flags must be comma separated.
|
If defining more than one flag, the flags must be comma separated.
|
||||||
.RE
|
.RE
|
||||||
|
|
|
||||||
|
|
@ -131,6 +131,8 @@ OPTIONS
|
||||||
|
|
||||||
OLTU Map lowercase characters to uppercase on output
|
OLTU Map lowercase characters to uppercase on output
|
||||||
|
|
||||||
|
MSB2LSB Map MSB bit order to LSB on output
|
||||||
|
|
||||||
If defining more than one flag, the flags must be comma separated.
|
If defining more than one flag, the flags must be comma separated.
|
||||||
|
|
||||||
-x, --hexadecimal
|
-x, --hexadecimal
|
||||||
|
|
|
||||||
|
|
@ -94,7 +94,7 @@ _tio()
|
||||||
return 0
|
return 0
|
||||||
;;
|
;;
|
||||||
-m | --map)
|
-m | --map)
|
||||||
COMPREPLY=( $(compgen -W "ICRNL IGNCR INLCR INLCRNL OCRNL ODELBS ONLCRNL" -- ${cur}) )
|
COMPREPLY=( $(compgen -W "ICRNL IGNCR INLCR INLCRNL OCRNL ODELBS ONLCRNL MSB2LSB" -- ${cur}) )
|
||||||
return 0
|
return 0
|
||||||
;;
|
;;
|
||||||
-t | --timestamp)
|
-t | --timestamp)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue