transpose-cli

Crates.iotranspose-cli
lib.rstranspose-cli
version1.0.0
created_at2025-04-05 15:54:23.890271+00
updated_at2025-04-05 15:54:23.890271+00
descriptionTranspose rows and columns
homepage
repositoryhttps://github.com/iced-penguin/transpose-cli
max_upload_size
id1622216
size11,688
(iced-penguin)

documentation

README

transpose-cli

Overview

A command-line tool for transposing rows and columns from standard input.

Requirements

  • rustc and cargo

Installation

cargo install transpose-cli

Usage

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
Commit count: 5

cargo fmt