May 9, 2006 #1 gam4939 Technical User May 9, 2006 2 US how can the scroll back buffer be clear within a script.
May 9, 2006 1 #2 knob Programmer Oct 31, 2001 2,573 US You can use the termreset command, here is what it does from the help file: Clears the Terminal window, moves the cursor to row 0, column0, and re-initializes the emulation. While it doesn't explicitly say so, reinitializing the emulation also wipes the scrollback buffer. http://www.aspectscripting.com Upvote 0 Downvote
You can use the termreset command, here is what it does from the help file: Clears the Terminal window, moves the cursor to row 0, column0, and re-initializes the emulation. While it doesn't explicitly say so, reinitializing the emulation also wipes the scrollback buffer. http://www.aspectscripting.com
May 9, 2006 1 #3 kodr Programmer Dec 4, 2003 368 Code: set terminal sbpages 0 ;destroys scrollback buffer set terminal sbpages 1000 ;sets new scrollback buffer size Upvote 0 Downvote
Code: set terminal sbpages 0 ;destroys scrollback buffer set terminal sbpages 1000 ;sets new scrollback buffer size