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 Connection Manager (버전 0.7.1 베타 (빌드 136))를 사용하고 있습니다.
타자:
echo \"$TERM\"; /bin/sh --version
보고서 :
"xterm"
GNU bash, version 4.1.2(1)-release-(x86_64-redhat-linux-gnu) ...