blash/commands/clear.json

17 lines
203 B
JSON
Raw Normal View History

2010-12-24 22:43:25 +01:00
{
"name" : "clear",
"info" : {
"syntax" : "clear",
"brief" : "Clear the terminal screen",
},
"action" : function ( arg )
{
var out = '';
2010-12-25 13:27:38 +01:00
shell.refreshPrompt ( true );
2010-12-24 22:43:25 +01:00
return out;
},
}