博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
获取终端下光标的位置
阅读量:5283 次
发布时间:2019-06-14

本文共 608 字,大约阅读时间需要 2 分钟。

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"

转载于:https://www.cnblogs.com/ggaaooppeennngg/p/3740138.html

你可能感兴趣的文章
多线程总结之旅(9):线程同步之事件
查看>>
C#基础知识之正则表达式
查看>>
Linux学习笔记(三)——权限管理
查看>>
python检测服务器是否ping通
查看>>
20172311 实验一《程序设计与数据结构》线性结构 实验报告
查看>>
Python--matplotlib绘图可视化知识点整理
查看>>
FTP知识集锦
查看>>
power designer简单教程
查看>>
Spring MVC静态资源处理(在applicationContex.xml文件中进行配置)
查看>>
POJ 3669 Meteor Shower【BFS】
查看>>
AOJ 0189 Convenient Location (Floyd)
查看>>
smarty模板自定义变量
查看>>
Windows下安装TensorFlow
查看>>
bootstraptable为行中的按钮添加事件
查看>>
POJ 1125 Stockbroker Grapevine 最短路 难度:0
查看>>
Topcoder 658 650 point
查看>>
HTML5新增
查看>>
第七节20181123
查看>>
第十七节20181215
查看>>
NYOJ-2 括号配对问题
查看>>