# xan transpose
```txt
Transpose the given CSV file.
This file:
A,B
C,D
Will become:
A,C
B,D
Usage:
xan transpose [options] []
xan t [options] []
xan transpose --help
xan t --help
Common options:
-h, --help Display this message
-o, --output Write output to instead of stdout.
-d, --delimiter The field delimiter for reading CSV data.
Must be a single character.
```