我知道我可以使用tput sc保存位置,但是如何读取变量的位置呢?我需要行数.我不想使用curses / ncurses.
解决方法
在ANSI兼容终端,打印序列ESC [6n将光标位置报告给应用程序(就像键入键盘一样)ESC [n; mR,其中n是行,m是列.
例:
~$echo -e "\033[6n"
编辑:
你应该确保你正在阅读键盘输入.终端只会“键入”ESC [n; mR序列(无ENTER键).在bash中你可以使用类似的东西:
echo -ne "\033[6n" # ask the terminal for the position read -s -d\[ garbage # discard the first part of the response read -s -d R foo # store the position in bash variable 'foo' echo -n "Current position: " echo "$foo" # print the position
说明:-d R(分隔符)参数将在char R而不是默认记录分隔符(ENTER)处进行读取停止.这将存储ESC [n; m in $foo.剪切使用[作为分隔符并选择第二个字段,让n; m(行;列).
我不知道其他的贝壳.你最好的镜头是Perl,Python或其他东西.在Perl中,您可以从以下(未经测试的)片段开始:
~$perl -e '$/ = "R";' -e 'print "\033[6n";my $x=<STDIN>;my($n,$m)=$x=~m/(\d+)\;(\d+)/;print "Current position: $m,$n\n";'
例如,如果您输入:
~$echo -e "z033[6n"; cat > foo.txt
按[ENTER]几次,然后按[CRTL] [D].然后尝试:
~$cat -v foo.txt ^[[47;1R
n和m值为47和1.检查wikipedia article on ANSI escape codes以获取更多信息.