PuTTYを実行しているときにコンソール画面とスクロールバックバッファーをクリアするには、次のようにします。
echo -en "\ec\e[3J"
これは、実際には独立して動作する2つの「Esc」シーケンスです。これらはいずれの順序でも使用できます。
# clears the console screen, but not the scrollback buffer
# this is actually the escape code to "reset" the terminal
echo -en "\ec"
# clears the scrollback buffer, but not the console screen
# screen content remains, and cursor position remains at its last position
echo -en "\e[3J"
使用してecho -en "\ec"
、端末をリセットすることはあなたの他の端末の設定の一部を変更する場合があります。「リセット」の代わりに、これを行うことができます:
# position the cursor to "Home" (Top Row, First Column)
echo -en "\e[H"
# Erase down: clear the screen from the cursor down to the bottom of the screen.
echo -en "\e[J"
# Note: this is supposed to clear the screen and position the cursor to home,
# but it didn't work like that for me. It cleared the entire screen (above and
# below the cursor), but left the cursor at its last position.
echo -en "\e[2J"
# putting everything together
echo -en "\e[H\e[J\e[3J"
これをシェルスクリプトに入れると問題なく動作します。
システムに依存関係がある場合:
PuTTY(リリース0.60)でPuTTY接続マネージャー(バージョン0.7.1ベータ(ビルド136))を使用しています。
タイピング:
echo \"$TERM\"; /bin/sh --version
レポート:
"xterm"
GNU bash, version 4.1.2(1)-release-(x86_64-redhat-linux-gnu) ...