blash/commands/clear.json

17 lines
203 B
JSON

{
"name" : "clear",
"info" : {
"syntax" : "clear",
"brief" : "Clear the terminal screen",
},
"action" : function ( arg )
{
var out = '';
shell.refreshPrompt ( true );
return out;
},
}