From ebf2f9763358b17c4ef17bbab51557fea8b1b910 Mon Sep 17 00:00:00 2001 From: terminalforlife Date: Thu, 5 Mar 2020 20:30:39 +0000 Subject: [PATCH] Add `colrm` file --- sheets/colrm | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 sheets/colrm diff --git a/sheets/colrm b/sheets/colrm new file mode 100644 index 0000000..c6ecdfb --- /dev/null +++ b/sheets/colrm @@ -0,0 +1,7 @@ +# colrm +# Remove columns from a file or STDIN + +# Remove the first, second, third, and fourth column. +colrm 1 4 [FILE] +# Same approach as the above, but via STDIN. +printf 'Some of this is omitted.' | colrm 1 4