Skip to content
Peter Ogilvie edited this page Jun 4, 2019 · 3 revisions

Enable disable text wrapping in terminal

https://apple.stackexchange.com/questions/90392/disable-line-wrapping-for-output-in-the-terminal

tput rmam disables line wrapping.

tput smam enables line wrapping.

Strip newlines from a file

$ tr '\n' ' ' < /tmp/x

Clone this wiki locally