スクリプトで強調表示されたテキストにアクセスしますか?

スクリプトで強調表示されたテキストにアクセスしますか?

シェルスクリプトで強調表示されたテキストにアクセスできますか?

「espeak」を使って強調表示されたテキストを読み取るキーボードショートカットを作成したいと思います。

答え1

はい、比較的簡単です。クリップボードを操作するための多数のツールがあります。私はそれを使ってAppleデバイスの登録と電子メールの確認を書くのに...xdotoolフォームを1000回書くよりはるかに簡単です...

だからショートカットを設定するのは/home/bob/bin/speak.sh

speak.sh:

#!/bin/bash

xclip -o | xclip -selection clipboard -i
xclip -o | espeak

答え2

短い:通常これを行うことはできません(選択項目をクリップボードにコピーしない限り)。

long:いくつかの特別な場合があります。たとえば、xtermには、アプリケーションがエスケープシーケンスを介して選択したテキストを読み取ることができる機能(通常は無効)があります。この時間はXTerm制御シーケンス:

        Ps = 5 2  -> Manipulate Selection Data.  These controls may
      be disabled using the allowWindowOps resource.  The parameter
      Pt is parsed as
           Pc; Pd
      The first, Pc, may contain zero or more characters from the
      set c  p  s  0  1  2  3  4  5  6  7 .  It is used to construct
      a list of selection parameters for clipboard, primary, select,
      or cut buffers 0 through 7 respectively, in the order given.
      If the parameter is empty, xterm uses s 0 , to specify the
      configurable primary/clipboard selection and cut buffer 0.
      The second parameter, Pd, gives the selection data.  Normally
      this is a string encoded in base64.  The data becomes the new
      selection, which is then available for pasting by other appli-
      cations.
      If the second parameter is a ? , xterm replies to the host
      with the selection data encoded using the same protocol.
      If the second parameter is neither a base64 string nor ? ,
      then the selection is cleared.

つまり、ウィンドウ操作を許可リソースがアクティブになり、アプリケーションは次の操作を実行できます。

printf '\033]52;s;?\007'

そして、選択データをbase64文字列として読み込みます。しかし、これは特別なケースです。

もちろん、一部のアプリケーションはクリップボードにコピーされますが(FAQを参照)、すべてではありません。たとえば、rxvtなどは、好みのものを使用します。どこでも動作するソリューションはありません。

追加資料:

関連情報