เมื่อต้องการล้างหน้าจอคอนโซลและบัฟเฟอร์การเลื่อนเมื่อเรียกใช้ PuTTY สิ่งนี้ใช้ได้กับฉัน:
echo -en "\ec\e[3J"
นี่คือลำดับ "Esc" 2 อันที่ทำหน้าที่อิสระ ... พวกเขาสามารถใช้ตามลำดับใดก็ได้:
# 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 Connection Manager (เวอร์ชั่น 0.7.1 BETA (รุ่น 136)), กับ PuTTY (Release 0.60)
พิมพ์ดีด:
echo \"$TERM\"; /bin/sh --version
รายงาน:
"xterm"
GNU bash, version 4.1.2(1)-release-(x86_64-redhat-linux-gnu) ...