15 lines
278 B
JavaScript
15 lines
278 B
JavaScript
/*
|
|
* This file is part of the authRXBN single sign-on package.
|
|
*
|
|
* (c) Ruben Meyer <contact@rxbn.de>
|
|
*/
|
|
|
|
module.exports = {
|
|
'command': 'clear',
|
|
'description': 'clear the output',
|
|
'action': (args, cb) => {
|
|
process.stdout.write ("\u001B[2J\u001B[0;0f");
|
|
cb();
|
|
}
|
|
};
|