FOLD(1) BSD General Commands Manual FOLD(1)NAME
fold -- fold long lines for finite width output device
SYNOPSIS
fold [-bs] [-w width] [file ...]
DESCRIPTION
The fold utility is a filter which folds the contents of the specified files, or the standard input if no files are specified, breaking the
lines to have a maximum of 80 columns.
The options are as follows:
-b Count width in bytes rather than column positions.
-s Fold line after the last blank character within the first width column positions (or bytes).
-w width
Specify a line width to use instead of the default 80 columns. Width should be a multiple of 8 if tabs are present, or the tabs
should be expanded using expand(1) before using fold.
ENVIRONMENT
The LANG, LC_ALL and LC_CTYPE environment variables affect the execution of fold as described in environ(7).
SEE ALSO expand(1), fmt(1)STANDARDS
The fold utility conforms to IEEE Std 1003.1-2001 (``POSIX.1'').
BUGS
If underlining is present it may be messed up by folding.
BSD August 2, 2004 BSD
Check Out this Related Man Page
FOLD(1) BSD General Commands Manual FOLD(1)NAME
fold -- fold long lines for finite width output device
SYNOPSIS
fold [-bs] [-w width] [file ...]
DESCRIPTION
fold is a filter which folds the contents of the specified files, or the standard input if no files are specified, breaking the lines to have
a maximum of 80 characters.
The options are as follows:
-b Count width in bytes rather than column positions.
-s Fold line after the last blank character within the first width column positions (or bytes).
-w width Specifies width to use as a line width, instead of the default 80 characters.
ENVIRONMENT
LC_CTYPE
EXIT STATUS
The fold utility exits 0 on success, and >0 if an error occurs.
SEE ALSO expand(1), fmt(1)STANDARDS
The fold utility conforms to IEEE Std 1003.1-2008 (``POSIX.1'').
BUGS
If underlining is present it may be messed up by folding.
Width should be a multiple of 8 if tabs are present, or the tabs should be expanded using expand(1) before using fold.
BSD September 15, 2011 BSD
Hi, I wonder if anyone can help me. I have a file with about 200 lines in it. I am wanting to set up a Count so that it picks out each line at turn and edits the line. However i am having trouble pulling out the specific line. I have a feeling it will be done somehow by a grep -n but what ever i... (2 Replies)
hi
I unload the table results from oracle to csv file foramt.
i need increse the width of each column using unix commands
could you pl tell me how to increase the width of each column to spefic width uisng sed unix command or na other unix commands
i have file name called report.csv
inside... (38 Replies)
Hi, I have two files.
File1:
File1 contains two fixed width columns ID of 15 characters length and Name is of 100 characters length.
ID Name
1-43<<11 spaces>>Swapna<<94 spaces>>
1-234<<10 spaces>>Mani<<96 spaces>>
1-3456<<9 spaces>>Kapil<<95 spaces>>
File2:
... (4 Replies)
Hi,
I need some help with breaking up a given line based on 'fixed width' file.
Something like this:
After the breaking up, I need to have this output format...
First line should have the first 134 characters.
Starting from second line, I should have one line every 61... (3 Replies)
Hi All,
I have a file from Mainframe which has one of the lines with so many words... i tried to fold, format to 80 chararcter.. stil did not work. So i have decided to search for a string in that line Ex.FLIGHT PLAN and once if it is found i want to delete the entire line.
Please help... (2 Replies)
I have a file which containd a string "old" and I need to replace all old with "new" if and only if it is a string not part of a string like Gold or fold etc.
I tried with sed like below
echo "old gold old" | sed 's/old/new/g'
It doesn't give the desired output, It give "old Gnew new".... (3 Replies)
Hi all,
I have afile with following data
I want to separate, count the entries with N/A in front of it so I will have all the entries with N/A in front seprate file .
so output shuld be (7 Replies)
I have a text file containing some notes and I want to limit the lines to 75 characters.
Tried using fold, however fold will cut words.
Need something in bash, sed or awk to do this. Find the blank space less than 75 ant cut from there (10 Replies)
Hi guys,
I'm new to the forums and putting my foot in the door with SED and AWK. I was wondering if someone could help me as I think I'm making this harder than it needs to be...
I have a list of folders named as urls, inside these are log files and possibly a 'status' file. I'm trying to get... (6 Replies)
I am hoping someone can help me with a solution to this problem using SED. My issue is actually two-fold. First, I have an order file that is sent to us from another system, however, there has been a change in current processes that requires a carriage return added to the end of each order. The... (5 Replies)
Hi All ,
I have a requirement where I need to remove duplicates from a fixed width file which has multiple key columns .Also , need to capture the duplicate records into another file .
File has 8 columns.
Key columns are col1 and col2.
Col1 has the length of 8 col 2 has the length of 3.
... (5 Replies)
Hello,
I have a list of files that was created with,
FILES='./'$FOLD'/'$FOLD'_continue/'$OPTIMIZE_ON'/'*'out.txt'
I am doing a loop on this list
for INPUT in $FILES
do
...
done
but I may not want to process everything. Is there a simple way to just process the first 5,10,n, etc in... (2 Replies)
Hello !
I'm using a lot the command zf% with the cursor on the first bracket of a function for example, to fold it.
Ex : I put my cursor on the first bracket
myfunction(){
# body
}
I type zf%
It become :
+-- 9 lines : myfunction()... (2 Replies)
hi ,
how can i print every character in new line on unix
i want to have abcd like this:
a
b
c
d
this code didn't worked in my os but worked on linux
echo "abcd"| 'sed 's/\(.\)/\1\n/g'
best reagard
Please use CODE tags as required by forum rules! (7 Replies)
Hello,
I have a file with hundreds of lines. Now I need to replace positions 750-766 in each line (whatever there is there) with spaces... how can I do that?
Which command to use?
The result will be all the lines in the file will have spaces in positions 750-766.
Thanks! (3 Replies)