This website requires JavaScript.
Explore
Help
Sign In
ctome
/
tldr
mirror of
https://github.com/CrimsonTome/tldr.git
Watch
1
Star
0
Fork
You've already forked tldr
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
884aec6231
tldr
/
pages
/
linux
/
colrm.md
237 B
Raw
Blame
History
colrm
Remove columns from stdin.
Remove first column of stdin:
colrm {{1 1}}
Remove from 3rd column till the end of each line:
colrm {{3}}
Remove from the 3rd column till the 5th column of each line:
colrm {{3 5}}