SOに関する同じ記事のタイトルのいくつかの例を使用できました:bashでカーソル位置を取得するにはどうすればよいですか?。私はこれをここに投稿していますが、それらが機能し、ソリューションのコンテンツが実際にU&Lにもあることを示しています。
Bashソリューション
スクリプトの中から
#!/bin/bash
# based on a script from http://invisible-island.net/xterm/xterm.faq.html
exec < /dev/tty
oldstty=$(stty -g)
stty raw -echo min 0
# on my system, the following line can be replaced by the line below it
echo -en "\033[6n" > /dev/tty
# tput u7 > /dev/tty # when TERM=xterm (and relatives)
IFS=';' read -r -d R -a pos
stty $oldstty
# change from one-based to zero based so they work with: tput cup $row $col
row=$((${pos[0]:2} - 1)) # strip off the esc-[
col=$((${pos[1]} - 1))
echo "(row,col): $row,$col"
注:出力を少し変更しました!
例
$ ./rowcol.bash
(row,col): 43,0
$ clear
$ ./rowcol.bash
(row,col): 1,0
インタラクティブシェル
このコマンドチェーンは、カーソルの行と列の位置を取得するために機能しました。
$ echo -en "\E[6n";read -sdR CURPOS; CURPOS=${CURPOS#*[};echo "${CURPOS}"
例
$ echo -en "\E[6n";read -sdR CURPOS; CURPOS=${CURPOS#*[};echo "${CURPOS}"
13;1
$ clear
$ echo -en "\E[6n";read -sdR CURPOS; CURPOS=${CURPOS#*[};echo "${CURPOS}"
2;1
注:このメソッドは、どのタイプのスクリプトからも使用できないようです。インタラクティブな端末での簡単なコマンドでさえ、私にはうまくいきませんでした。例えば:
$ pos=$(echo -en "\E[6n";read -sdR CURPOS; CURPOS=${CURPOS#*[};echo "${CURPOS}")
無期限にハングアップするだけです。
ダッシュ/ shソリューション
スクリプトの中から
このソリューションは、dash
POSIX準拠のが付属しているUbuntu / Debianシステム用です。このため、このread
コマンドは-d
他の違いとの切り替えをサポートしていません。
これを回避するためsleep 1
に、-d
スイッチの代わりにを使用するこのソリューションがあります。これは理想的ではありませんが、少なくとも実用的なソリューションを提供します。
#!/bin/sh
exec < /dev/tty
oldstty=$(stty -g)
stty raw -echo min 0
tput u7 > /dev/tty
sleep 1
IFS=';' read -r row col
stty $oldstty
row=$(expr $(expr substr $row 3 99) - 1) # Strip leading escape off
col=$(expr ${col%R} - 1) # Strip trailing 'R' off
echo "(row,col): $col,$row"
例
$ ./rowcol.sh
(row,col): 0,24
$ clear
$ ./rowcol.sh
(row,col): 0,1
インタラクティブシェル
sh
対話型シェルでのみ機能する実行可能なソリューションが見つかりませんでした。