transpose is a fast and efficient command-line tool that transposes (the rows become the columns, the columns become the rows) or reshapes a matrix in plain text. Inputs and outputs can be files or streams.
Features
- Transposes the rows and columns of a plain text matrix - other reshaping can also be performed.
- Handles badly-shaped matrices easily.
- Integrates well with other command-line tools.
- Fast and light on resources.
License
GNU General Public License version 2.0 (GPLv2)Follow transpose
Other Useful Business Software
Simple, Secure Domain Registration
Register or renew your domain and pay only what we pay. No markups, hidden fees, or surprise add-ons. Choose from over 400 TLDs (.com, .ai, .dev). Every domain is integrated with Cloudflare's industry-leading DNS, CDN, and free SSL to make your site faster and more secure. Simple, secure, at-cost domain registration.
Rate This Project
Login To Rate This Project
User Reviews
-
One would need to specify -t to tell the program to transpose, which is unintuitive given the name. Apart from that, it works as intended and great.
-
I think the transpose of a b c d should be a c b d instead transpose does: $ echo -e 'a\tb\nc\td\n' | ./transpose a b c d