insertln(3XCURSES) X/Open Curses Library Functions insertln(3XCURSES)NAME
insertln, winsertln - insert a line in a window
SYNOPSIS
cc [ flag... ] file... -I /usr/xpg4/include -L /usr/xpg4/lib
-R /usr/xpg4/lib -lcurses [ library... ]
c89 [ flag... ] file... -lcurses [ library... ]
#include <curses.h>
int insertln(void);
int winsertln(WINDOW *win);
PARAMETERS
win Is a pointer to the window in which to insert the line.
DESCRIPTION
The insertln() and winsertln() functions insert a blank line before the current line in stdscr or win, respectively. The new line becomes
the current line. The current line and all lines after it in the window are moved down one line. The bottom line in the window is dis-
carded.
RETURN VALUES
On success, these functions return OK. Otherwise, they return ERR.
ERRORS
None.
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|Interface Stability |Standard |
+-----------------------------+-----------------------------+
|MT-Level |Unsafe |
+-----------------------------+-----------------------------+
SEE ALSO bkgdset(3XCURSES), deleteln(3XCURSES), insdelln(3XCURSES), libcurses(3XCURSES), attributes(5), standards(5)SunOS 5.10 5 Jun 2002 insertln(3XCURSES)
Check Out this Related Man Page
delch(3XCURSES) X/Open Curses Library Functions delch(3XCURSES)NAME
delch, mvdelch, mvwdelch, wdelch - remove a character
SYNOPSIS
cc [ flag... ] file... -I /usr/xpg4/include -L /usr/xpg4/lib
-R /usr/xpg4/lib -lcurses [ library... ]
c89 [ flag... ] file... -lcurses [ library... ]
#include <curses.h>
int delch(void);
int mvdelch(int y, int x);
int mvwdelch(WINDOW *win, int y, int x);
int wdelch(WINDOW *win);
DESCRIPTION
The delch() and wdelch() functions delete the character at the current cursor position from stdscr and win, respectively. All remaining
characters after cursor through to the end of the line are shifted one character towards the start of the line. The last character on the
line becomes a space; characters on other lines are not affected.
The mvdelch() and mvwdelch() functions delete the character at the position specified by the x and y parameters; the former deletes the
character from stdscr; the latter from win.
PARAMETERS
y Is the y (row) coordinate of the position of the character to be removed.
x Is the x (column) coordinate of the position of the character to be removed.
win Is a pointer to the window containing the character to be removed.
RETURN VALUES
On success, these functions return OK. Otherwise, they return ERR.
ERRORS
None.
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|Interface Stability |Standard |
+-----------------------------+-----------------------------+
|MT-Level |Unsafe |
+-----------------------------+-----------------------------+
SEE ALSO bkgdset(3XCURSES), insch(3XCURSES), libcurses(3XCURSES), attributes(5), standards(5)SunOS 5.10 5 Jun 2002 delch(3XCURSES)
hi...
i have a file with data and would like to insert a number and bracket 1) ...2)
at the beginning of every successive line; to add some formatting to the text (3 Replies)
I need your help,
I want to add a text every 2nd line and also a blank line after 3 line
(In the output 2nd line is "changetype: modify" and every 4th line is blank line)
Input file format
dn: abc
orclsourceobjectdn: abcd
dn: bcd
orclsourceobjectdn: bcda
dn: cba
orclsourceobjectdn:... (7 Replies)
Hi
I've got a trivial question on using ed (yes, I know, other editors are better!)
How do I insert a line that is just a single dot? (That is, how do I insert a line that starts with a dot and then new line)
Thanks
Peter (4 Replies)
I have a file where each line starts with a "update" statement. I want to insert a new line, after each line, with the words "go" in the new line. Can someone help me out with this? (1 Reply)
Hi
I have a file which contains entry similar to this one:
PX_LIST="2259 2215 270 2635 2874 2713 243 4124 2529 2874 34 477 "
Is there a efficient(short) way to use "awk" or "sed" to enter any number, lets say 7777, as the first number inside the quotes, so the result would look like this:... (3 Replies)
Hi
I need to update a number of existing files and insert #!/bin/ksh line a the first line of the file.
Is there any awk or sed command which would help me to do that instead of doing it manually?
Thanks a lot -A (10 Replies)
I can't seem to get sed to allow me to insert text in the first line of an empty file. I have a file.txt that is a 0 byte file. I want sed to insert " fooBar" onto the first line. I've tried a few options and nothing seems to work. They work just fine if there's text in the file tho. Help? (4 Replies)
Hi i have to insert the below line into a specific line number of another file
export MBR_CNT_PRCP_TYPE_CODES_DEL="'01','02','04','05','49','55','UNK'"
I have passed the above line to a variable say ins_line. I have used below command to perform the insert
awk 'NR==3{print "'"${ins_line}"'"}1'... (1 Reply)
how to insert a line of text that is next to the current line(file pointer pointing to) in the file ?? :wall:
ex:
suppose a file named 'Sample' has the following content in it.
this is to
give clear idea about
the problem
if file pointer is pointing to the first line then i want to... (3 Replies)
My file looks like this. When I see dn:, i'd like to insert a line above that. Sorry, i have no idea how to insert a line above so i won't be able to put in a code tage. Thank you so much for your time and assistance on this request.
dn: OU=Groups,O=lwsnrmdata,O=lwsn,DC=cinemark,DC=com... (5 Replies)