码迷,mamicode.com
首页 > 其他好文 > 详细

获取终端下光标的位置

时间:2014-05-21 18:43:15      阅读:300      评论:0      收藏:0      [点我收藏+]

标签:c   http   a   html   htm   line   

1 #!/bin/bash
2 #based on a script from http://invisible-island.net/xterm/xterm.faq.html
3 exec < /dev/tty
4 oldstty=$(stty -g)
5 stty raw -echo min 0
6 # on my system, the following line can be replaced by the line below it
7 echo -en "\033[6n" > /dev/tty
8 # tput u7 > /dev/tty # when TERM=xterm (and relatives)
9 IFS=‘;‘ read -r -d R -a pos
10 stty $oldstty
11 # change from one-based to zero based so they work with: tput cup $row $col
12 row=$((${pos[0]:2} - 1)) # strip off the esc-[
13 col=$((${pos[1]} - 1))
14
15 echo "(row,col): $row,$col"

获取终端下光标的位置,布布扣,bubuko.com

获取终端下光标的位置

标签:c   http   a   html   htm   line   

原文地址:http://www.cnblogs.com/ggaaooppeennngg/p/3740138.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!