Wipes history printed to the screen. Does not clear command history.
Command line interface
Syntax
- $ clear
Arguments
Clear takes no arguments.
Example

clear.js
- /**
- * Clear screen
- **/
- TinyShell.plugins.clear = new Class({
- description: "Clear history",
- run : function(terminal) {
- terminal.clear_history();
- terminal.resume();
- }
- });