less -rとless -Rの違い

less -rとless -Rの違い

less2つのオプションがあります。

-rまたは--raw-control-chars

「生」制御文字が表示されます。

-Rまたは--RAW-CONTROL-CHARS

と似ています-rが、ANSI「カラー」エスケープシーケンスのみが「生」形式で出力されます。

これは、色制御文字しかない場合は同じことを意味しますか?私の出力は^Oパイプが到着するとそこにありますがless -R、パイプが到着するときはそうではありませんless -r。ここで何が起こっているのでしょうか?

ベストアンサー1

マニュアルページによると:

    -r or --raw-control-chars
          Causes "raw" control characters to be displayed.  The default is to display control characters using the
          caret  notation; for example, a control-A (octal 001) is displayed as "^A".  Warning: when the -r option
          is used, less cannot keep track of the actual appearance of the screen (since this depends  on  how  the
          screen  responds to each type of control character).  Thus, various display problems may result, such as
          long lines being split in the wrong place.

   -R or --RAW-CONTROL-CHARS
          Like -r, but only ANSI "color" escape sequences are output in "raw" form.  Unlike -r, the screen appear‐
          ance is maintained correctly in most cases.  ANSI "color" escape sequences are sequences of the form:

               ESC [ ... m

          where  the  "..."  is  zero  or  more color specification characters For the purpose of keeping track of
          screen appearance, ANSI color escape sequences are assumed to not move the cursor.  You  can  make  less
          think  that  characters  other  than  "m" can end ANSI color escape sequences by setting the environment
          variable LESSANSIENDCHARS to the list of characters which can end a color escape sequence.  And you  can
          make  less  think  that  characters other than the standard ones may appear between the ESC and the m by
          setting the environment variable LESSANSIMIDCHARS to the list of characters which can appear.

明らかに、lessANSIエスケープコードはデフォルトでエスケープされ、キャレット(^)の後にコードが表示されます。-rこれらの文字はエスケープされていないため、入力にランダムなバイナリデータが含まれていると、ANSI制御文字がコンソールから予期しない横説説を出力する可能性があります。 (これが文字自体を処理せずに画面がどのようにless見えるかを知る方法がない理由です。)-Rできません。

おすすめ記事