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