public static void Help(string args, Terminal Context) { foreach (string StringToOut in CLICommon.GetHelp("default")) { Context.SendOut(StringToOut); } }
public string[] GetTabCompletes(string ToCheck) { return(CLICommon.GetAutoCompletes("pwntl", ToCheck)); }
public void ParseIn(string Command, Terminal Context) { History.Add(Command); CLICommon.RunCommand("pwntl", Command, this, Context); }