Jul 12, 2002 #1 Tison Programmer Joined May 12, 1999 Messages 216 Location CH Is it possible in AIX to tell what line or column the cursor is on ? OR Is it possible to tell how many lines of data are displayed on a screen ?
Is it possible in AIX to tell what line or column the cursor is on ? OR Is it possible to tell how many lines of data are displayed on a screen ?
Jul 12, 2002 #2 Chapter11 Technical User Joined Apr 15, 2002 Messages 791 Location US I'm assuming you mean in a terminal or telnet window of some sort. Yes. For script use, try getting your information from "termdef" Upvote 0 Downvote
I'm assuming you mean in a terminal or telnet window of some sort. Yes. For script use, try getting your information from "termdef"
Jul 16, 2002 Thread starter #3 Tison Programmer Joined May 12, 1999 Messages 216 Location CH OK,,how do I do it ? Upvote 0 Downvote
Jul 16, 2002 #4 Chapter11 Technical User Joined Apr 15, 2002 Messages 791 Location US [tt]ROWS=`termdef -l` COLS=`termdef -c`[/tt] [tt]man termdef[/tt] Upvote 0 Downvote