Last active
October 4, 2016 11:30
-
-
Save coderofsalvation/8326356 to your computer and use it in GitHub Desktop.
prints lines which do not exceed the terminal width
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # prints lines which do not exceed the terminal width | |
| # usage: cat somefile.txt | wraplines | |
| function wraplines(){ | |
| cut -c1-$(stty size <&2 | cut -d' ' -f2) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment