Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 402 Bytes

README.md

File metadata and controls

32 lines (25 loc) · 402 Bytes

column Rust

Usage

USAGE:
    column [OPTIONS] <columns>...

FLAGS:
    -h, --help       Prints help information
    -V, --version    Prints version information

OPTIONS:
    -s <separator>        

ARGS:
    <columns>...   
$ cat hoge.txt
A B C D
E F G H
I J K L
M N O P

$ cat hoge.txt | column 3 1
D B
H F
L J
P N