Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
wrap line > 80 chararacter
Name: dr0871 Date: July 9, 2004 at 08:36:08 Pacific OS: Sun OS 5.8 CPU/Ram: not sure
Comment:
Is there any any simple command to wrap lines in a file which are more than 80 character long ?
Summary: My first suggestion is to try to avoid the wrapped lines to begin with. In Oracle sqlplus, increase the width of an output line so that one entire logical line will fit on one physical line: set line...
Summary: Here is an awk snippet that will wrap long lines to 70 characters and indent the wrapped lines. awk '{ll=int(length($0)/70) ; i=1 ;\ if (length($0)>72) { \ { print substr($0,0,70) } \ while (i&l...
Summary: Hi, I am using AIX 5.3 and our terminal window is 132 characters long. However, when I open any file is file, it shows only 80 characters on one line. The remaining characters are wrapped up to the ne...