Bashスクリプトで、変数のカーソル列を取得します。 ANSIエスケープコード{ESC}[6n
は、それを取得する唯一の方法です。たとえば、次の方法です。
# Query the cursor position
echo -en '\033[6n'
# Read it to a variable
read -d R CURCOL
# Extract the column from the variable
CURCOL="${CURCOL##*;}"
# We have the column in the variable
echo $CURCOL
残念ながら、これは文字を標準出力に出力するので、黙ってそれを実行したいと思います。その上、これはあまり移植性がありません...
これを達成するための純粋な方法はありますか?
あなたは汚いトリックに頼らなければなりません:
#!/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))
read
に-s
フラグを使用してサイレントで動作するように指示できます。
echo -en "\E[6n"
read -sdR CURPOS
CURPOS=${CURPOS#*[}
そして、CURPOSは21;3
のようなものです。
関数として、ncursesの user defined コマンドを使用して、特定の変数を設定します。
getCPos () {
local v=() t=$(stty -g)
stty -echo
tput u7
IFS='[;' read -rd R -a v
stty $t
CPos=(${v[@]:1})
}
今より:
getCPos
echo $CPos
21
echo ${CPos[1]}
1
echo ${CPos[@]}
21 1
declare -p CPos
declare -a CPos=([0]="48" [1]="1")
注意:ncurses
コマンドを使用:tput u7
行#4
は、コマンドでVT220
文字列を使用する場合よりも portable を維持することを期待しています:printf "\033[6n"
。 ..わからない:とにかくこれはそれらのどれでも動作します:
getCPos () {
local v=() t=$(stty -g)
stty -echo
printf "\033[6n"
IFS='[;' read -ra v -d R
stty $t
CPos=(${v[@]:1})
}
VT220 互換性のあるTERMの下でも、まったく同じように動作します。
あなたはそこにいくつかのドキュメントを見つけるかもしれません:
4.17.2デバイスステータスレポート(DSR)
...
Host to VT220 (Req 4 cur pos) CSI 6 n "Please report your cursor position using a CPR (not DSR) control sequence." VT220 to Host (CPR response) CSI Pv; Ph R "My cursor is positioned at _____ (Pv); _____ (Ph)." Pv = vertical position (row) Ph = horizontal position (column)
移植性のために、ダッシュのようなシェルで実行されるバニラPOSIX互換バージョンの作成に取り掛かりました。
#!/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 $col,$row
...しかし、bashの「read -d」の実行可能な代替案を見つけることができないようです。スリープがなければ、スクリプトは戻り出力を完全に逃します...
他の誰かがこれを探している場合に備えて、ここで別の解決策を見つけました: https://github.com/dylanaraps/pure-bash-bible#get-the-current-cursor-position
以下は、コメント付きのわずかに変更されたバージョンです。
#!/usr/bin/env bash
#
# curpos -- demonstrate a method for fetching the cursor position in bash
# modified version of https://github.com/dylanaraps/pure-bash-bible#get-the-current-cursor-position
#
#========================================================================================
#-
#- THE METHOD
#-
#- IFS='[;' read -p $'\e[6n' -d R -a pos -rs || echo "failed with error: $? ; ${pos[*]}"
#-
#- THE BREAKDOWN
#-
#- $'\e[6n' # escape code, {ESC}[6n;
#-
#- This is the escape code that queries the cursor postion. see XTerm Control Sequences (1)
#-
#- same as:
#- $ echo -en '\033[6n'
#- $ 6;1R # '^[[6;1R' with nonprintable characters
#-
#- read -p $'\e[6n' # read [-p Prompt]
#-
#- Passes the escape code via the Prompt flag on the read command.
#-
#- IFS='[;' # characters used as Word delimiter by read
#-
#- '^[[6;1R' is split into array ( '^[' '6' '1' )
#- Note: the first element is a nonprintable character
#-
#- -d R # [-d delim]
#-
#- Tell read to stop at the R character instead of the default newline.
#- See also help read.
#-
#- -a pos # [-a array]
#-
#- Store the results in an array named pos.
#- Alternately you can specify variable names with positions: <NONPRINTALBE> <ROW> <COL> <NONPRINTALBE>
#- Or leave it blank to have all results stored in the string REPLY
#-
#- -rs # raw, silent
#-
#- -r raw input, disable backslash escape
#- -s silent mode
#-
#- || echo "failed with error: $? ; ${pos[*]}"
#-
#- error handling
#-
#- ---
#- (1) XTerm Control Sequences
#- http://invisible-island.net/xterm/ctlseqs/ctlseqs.html#h2-Functions-using-CSI-_-ordered-by-the-final-character_s_
#========================================================================================
#-
#- CAVEATS
#-
#- - if this is run inside of a loop also using read, it may cause trouble.
#- to avoid this, use read -u 9 in your while loop. See safe-find.sh (*)
#-
#-
#- ---
#- (2) safe-find.sh by l0b0
#- https://github.com/l0b0/tilde/blob/master/examples/safe-find.sh
#=========================================================================================
#================================================================
# fetch_cursor_position: returns the users cursor position
# at the time the function was called
# output "<row>:<col>"
#================================================================
fetch_cursor_position() {
local pos
IFS='[;' read -p $'\e[6n' -d R -a pos -rs || echo "failed with error: $? ; ${pos[*]}"
echo "${pos[1]}:${pos[2]}"
}
#----------------------------------------------------------------------
# print ten lines of random widths then fetch the cursor position
#----------------------------------------------------------------------
#
MAX=$(( $(tput cols) - 15 ))
for i in {1..10}; do
cols=$(( $RANDOM % $MAX ))
printf "%${cols}s" | tr " " "="
echo " $(fetch_cursor_position)"
done