Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 342 Bytes

transpose.md

File metadata and controls

24 lines (19 loc) · 342 Bytes

Transpose the lines of a file

USAGE cdx transpose [options...] [file]

-h --head Print CDX before other data
-l --lines=Number Maximum lines to examine
-u --unique remove duplicate lines.

for example:

   1  2  3
   4  5  6

becomes

   1  4
   2  5
   3  6

home