| Crates.io | transpose-cli |
| lib.rs | transpose-cli |
| version | 1.0.0 |
| created_at | 2025-04-05 15:54:23.890271+00 |
| updated_at | 2025-04-05 15:54:23.890271+00 |
| description | Transpose rows and columns |
| homepage | |
| repository | https://github.com/iced-penguin/transpose-cli |
| max_upload_size | |
| id | 1622216 |
| size | 11,688 |
A command-line tool for transposing rows and columns from standard input.
rustc and cargocargo install transpose-cli
The command-line tool is invoked using the tp command.
The default field delimiter is ,. To specify a different field delimiter, use the -d or --delimiter option.
Example:
echo -e "a,b,c\nd,e,f" | tp
Output:
a,d
b,e
c,f