curs_move(3) Library Functions Manual curs_move(3)NAME
curs_move, move, wmove - Move the Curses window cursor
SYNOPSIS
#include <curses.h>
int move(
int y,
int x ); int wmove(
WINDOW *win,
int y,
int x );
LIBRARY
Curses Library (libcurses)
STANDARDS
Interfaces documented on this reference page conform to industry standards as follows:
move, wmove: XCURSES4.2
Refer to the standards(5) reference page for more information about industry standards and associated tags.
DESCRIPTION
These routines move the cursor associated with the Curses window to line y and column x. They do not move the physical cursor of the ter-
minal until refresh is called. The specified position is relative to (0,0), which is the upper left-hand corner of the window.
NOTES
The header file <curses.h> automatically includes the header file <stdio.h>.
Note that move may be a macro.
RETURN VALUES
These routines return the integer ERR upon failure and OK upon successful completion.
SEE ALSO
Functions: curses(3), curs_refresh(3)
Others: standards(5)curs_move(3)
Check Out this Related Man Page
curs_move(3) Library Functions Manual curs_move(3)NAME
curs_move, move, wmove - Move the Curses window cursor
SYNOPSIS
#include <curses.h>
int move(
int y,
int x ); int wmove(
WINDOW *win,
int y,
int x );
LIBRARY
Curses Library (libcurses)
STANDARDS
Interfaces documented on this reference page conform to industry standards as follows:
move, wmove: XCURSES4.2
Refer to the standards(5) reference page for more information about industry standards and associated tags.
DESCRIPTION
These routines move the cursor associated with the Curses window to line y and column x. They do not move the physical cursor of the ter-
minal until refresh is called. The specified position is relative to (0,0), which is the upper left-hand corner of the window.
NOTES
The header file <curses.h> automatically includes the header file <stdio.h>.
Note that move may be a macro.
RETURN VALUES
These routines return the integer ERR upon failure and OK upon successful completion.
SEE ALSO
Functions: curses(3), curs_refresh(3)
Others: standards(5)curs_move(3)
Greetings all.
I need is a script that will move a file from one known dir to another, then grab another file from a different dir to replace it, and have absolutely zero clue how to do this.
Here's what I am trying to do:
A web client wants his site header image to change based on US... (2 Replies)
Hello experts,
I ve a text file I want to go to particular line . what is the best way to do this in c ?
I am tried as follows
fseek ( fh, pos, SEEK_SET);
but this functions moves the file pointer according to a number of bytes. Unfortunately I don't know the exact byte... (7 Replies)
Hello experts,
I have a directory which the files inside have different date.
Now I'd like to move them to folder year/mouth (2007/01 , 2007/02)
Have any suggestion?
thanks in advance for reading or anyposts. (3 Replies)
Hi All,
please help me to know how to move the cursor to the desired position?
For example, in a shell script, I am displaying
echo "\t Enter your Name:"
please help me how to move cursor near the first word.
for example, if the output is as below
... (3 Replies)
foreach x ( *.foo)
echo "move file?"
set move=$<
if($move == y) then
echo "enter new pathname:"
set path=$<
mv $x $path/$x
endif
end
ok guys, im creating this script so i can move files with *.foo extensions and *.bar... (6 Replies)
Hi, I have a requirement to move to diff directories based on the input file
Project|SourceFolder|SourceFile|TargetFolder|TargetFile
the above is my Record in a file I have to read the record and move to the Target folder to copy some records
var_TargetSystem==`cat "$var_SourceFile" |... (3 Replies)
Hi guys, I need some assistance moving a LV. :D
I have a VG with two PV; on the second PV there is only one LV so I want to move it to the first PV (hdisk1) in order to get rid of the second one (hdisk2)
Something like (pseudocode):
move MyLV from hdisk2 to hdisk1
How can I achieve that? (4 Replies)
I'm looking to find/create a script so that when a download is complete, I can run the script in order for it to automatically move a file such as...
'example.avi' into my videos folder
I'm a novice when it comes to scripting, any advice/help would be greatly appreciated!
Thanks
Andrew (10 Replies)