mirror of
https://github.com/ShiftOS-Rewind/ShiftOS.git
synced 2025-02-02 13:57:34 +00:00
22 lines
584 B
C#
22 lines
584 B
C#
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ShiftOS.Main.Terminal.Commands
|
|
{
|
|
public class Clear : TerminalCommand
|
|
{
|
|
public override string Name { get; } = "clear";
|
|
public override string Summary { get; } = "Clears all text from the terminal.";
|
|
public override string Usage { get; } = "clear";
|
|
public override bool Unlocked { get; set; } = false;
|
|
|
|
public override void Run(params string[] parameters)
|
|
{
|
|
Clear();
|
|
}
|
|
}
|
|
}
|