Add clear command (fix #4)
This commit is contained in:
@ -195,4 +195,10 @@ const exitCmd: Command = {
|
||||
}
|
||||
}
|
||||
|
||||
export const commandList = [about, help, man, project, exitCmd];
|
||||
const clear: Command = {
|
||||
name: "clear",
|
||||
desc: "Clears the output on screen.",
|
||||
execute: () => []
|
||||
}
|
||||
|
||||
export const commandList = [about, help, man, project, exitCmd, clear];
|
Reference in New Issue
Block a user