Computer Tips - Linux: How can I wrap the lines of text in a file?

Date: 2017mar30 OS: Linux Q. Linux: How can I wrap the lines of text in a file? A. Use the fold command with -<width> like this:
fold -70 -s myfile.txt
The -s option tells it to break on spaces (which should be the default).