May 9, 2006 #1 gam4939 Technical User Joined May 9, 2006 Messages 2 Location US how can the scroll back buffer be clear within a script.
May 9, 2006 1 #2 knob Programmer Joined Oct 31, 2001 Messages 2,573 Location 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 Joined Dec 4, 2003 Messages 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