curs_delch(3X)curs_delch(3X)NAME
delch, wdelch, mvdelch, mvwdelch - delete character under the cursor in a curses window
SYNOPSIS
#include <curses.h>
int delch(void);
int wdelch(WINDOW *win);
int mvdelch(int y, int x);
int mvwdelch(WINDOW *win, int y, int x);
DESCRIPTION
These routines delete the character under the cursor; all characters to the right of the cursor on the same line are moved to the left one
position and the last character on the line is filled with a blank. The cursor position does not change (after moving to y, x, if speci-
fied). (This does not imply use of the hardware delete character feature.)
RETURN VALUE
All routines return the integer ERR upon failure and an OK (SVr4 specifies only "an integer value other than ERR") upon successful comple-
tion.
Functions with a "mv" prefix first perform a cursor movement using wmove, and return an error if the position is outside the window, or if
the window pointer is null.
NOTES
Note that delch, mvdelch, and mvwdelch may be macros.
PORTABILITY
These functions are described in the XSI Curses standard, Issue 4. The standard specifies that they return ERR on failure, but specifies
no error conditions.
SEE ALSO curses(3X)curs_delch(3X)
Check Out this Related Man Page
curs_delch(3X)curs_delch(3X)NAME
delch, wdelch, mvdelch, mvwdelch - delete character under the cursor in a curses window
SYNOPSIS
#include <curses.h>
int delch(void);
int wdelch(WINDOW *win);
int mvdelch(int y, int x);
int mvwdelch(WINDOW *win, int y, int x);
DESCRIPTION
These routines delete the character under the cursor; all characters to the right of the cursor on the same line are moved to the left one
position and the last character on the line is filled with a blank. The cursor position does not change (after moving to y, x, if speci-
fied). (This does not imply use of the hardware delete character feature.)
RETURN VALUE
All routines return the integer ERR upon failure and an OK (SVr4 specifies only "an integer value other than ERR") upon successful comple-
tion.
Functions with a "mv" prefix first perform a cursor movement using wmove, and return an error if the position is outside the window, or if
the window pointer is null.
NOTES
Note that delch, mvdelch, and mvwdelch may be macros.
PORTABILITY
These functions are described in the XSI Curses standard, Issue 4. The standard specifies that they return ERR on failure, but specifies
no error conditions.
SEE ALSO curses(3X)curs_delch(3X)
Hello,
I think I'm close to doing this, but I could be wrong.
I have a string I would like to search for and delete the last character of the that line.
This is what I have...
sed 's/POHEAD\(.\)$//g' tempd > tempe
The above works if I search for P, but that won't work. I need to search... (2 Replies)
hi
i want to delete a particular character in file.
example
file name:abcsample
abc=bbbqw3/
hidh=ajjqiwio4/
xyx=hakjp/
........../
......./
i want to delete that special character (/) in abcsample file.please give the required commands for my requirement.
thank you (3 Replies)
hi
i want to delete a particular character in file.
example
file name:abcsample
abc=bbbqw3/
hidh=ajjqiwio4/
xyx=hakjp/
........../
......./
i want to delete that special character (/) in abcsample file Permnently.please give the required commands for my requirement.
required... (1 Reply)
Hi there,
A total sed noob here. Is there a way using sed to delete everything before a character AND after another character on each line in a file? The deletion should also delete the indicating characters(here: an opening and a closing parenthesis).
The original file would look like... (3 Replies)