Command to know the terminal cursor position

Dear all,

How can i get the current cursor position..is thr any command to find the same?

Thanks in Advance
Aneesh

do u mean in vi editor....
set ruler....

set ruler like this....
:se ruler

You could write a small program using the CURSES getxy() function
to output the X and Y co-ordinates

  void getyx\(WINDOW *win, int y, int x\);