Add `colrm` file

pull/100/head
terminalforlife 4 years ago
parent 4a1a6d1e77
commit ebf2f97633

@ -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
Loading…
Cancel
Save