Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 378 Bytes

fmt.md

File metadata and controls

24 lines (18 loc) · 378 Bytes

uxy fmt

Takes an UXY input and reformats it according to the supplied headers.

It allows for:

  • reordering of columns
  • resizing of columns
  • dropping columns
  • adding new columns

Example

$ cat test.uxy
TIME  NAME
15:03 README.md 
16:08 uxy
$ uxy fmt "NAME          TIME" < test.uxy 
NAME          TIME 
README.md     15:03 
uxy           16:08