termcap 関数の端末状態を取得します。

termcap 関数の端末状態を取得します。

smamなどの端末設定の状態をどのように検索できますかrmam

その理由はrmam私が設定したものです。

tput rmam

スクリプトからsmam出口設定に進みます。

tput smam

ただし、スクリプトの起動時に端末がすでに設定されている場合は、終了時に設定したくrmamありません。smam


これはどのように達成できますか?

答え1

これをサポートする端末エミュレータでは、エスケープ(「DEC Personal Mode Request」)を使用して、\033[?7$pこのパラメータ(=>単語改行モード)を照会できます。7

decrqm()(
    exec </dev/tty
    t=$(stty -g)
    trap 'stty "$t"; return' EXIT QUIT INT TERM
    stty -icanon -echo time 1 min 0
    e=$(printf '\033')
    printf "${e}[$1\$p" >/dev/tty
    case $(dd count=1 2>/dev/null) in
    "${e}[$1;1\$y") echo on;;
    "${e}[$1;2\$y") echo off;;
    *) echo unknown;;
    esac
)

$ tput smam  # printf '\033[?7h'
$ decrqm '?7'
on
$ tput rmam  # printf '\033[?7l'
$ decrqm '?7'
off

より良い方法は救う\033[?7sスクリプトの使用と実行時に設定また覆う出るとき\033[?7r

save_am(){ printf '\033[?7s'; }
restore_am(){ printf '\033[?7r'; }

save_am
tput rmam
..
restore_am

screenしかし、多くの端末エミュレータ(特に、tmuxサポートしていない脱出した人々。少なくとも基本的ではありません。したがって、これはすべて純粋なクイズです。実際には何もできません;-)

答え2

非常に見苦しいが検出可能:

#!/bin/bash

# Detect smam / rmam by printing COLUMNS characters and 
# checking cursor line before and after.

smam()
(
    local -i smam r1 r2 cw
    exec </dev/tty
    local t=$(stty -g)
    trap 'stty "$t"; return' EXIT QUIT INT TERM
    stty -icanon -echo time 1 min 0

    # Terminal width + 1
    (( cw = $(tput cols) + 1 ))

    # Create a blank line and go back up (in case we are at bottom)
    printf "\n"
    tput cuu1
    # Get cursor row 1
    printf "\x1b[6n" >/dev/tty
    r1=$(dd count=1 2>/dev/null | sed 's/\x1b\[\(.*\);.*/\1/')
    # Print columns + 1 spaces
    for ((i = 0; i < cw; ++i)); do printf " "; done
    # Get cursor row 2 AND go to start of line
    printf "\x1b[6n\r" >/dev/tty
    r2=$(dd count=1 2>/dev/null | sed 's/\x1b\[\(.*\);.*/\1/')

    # smam is true if we are at a higher line number
    (( smam = r2 - r1 ))
    # Clear line
    tput el
    # If smam clear line we started on as well
    (( smam )) && tput cuu1 && tput el
    # Optional debug check 
    # printf "%d %d\n" $x1 $x2
    return $(( smam ^ 1 ))
)

# example:

smam && echo smam || echo rmam


1つの珍しいことは、人々が新しい回線に電話をかけるには待機状態になければならないということです。

関連情報