Exemplo n.º 1
0
 public HelpCmd(SimpleShell shell) : base("help", shell)
 {
 }
Exemplo n.º 2
0
 public LsCmd(SimpleShell shell) : base("ls", shell)
 {
 }
Exemplo n.º 3
0
 public MkFileCmd(SimpleShell shell) : base("mkfile", shell)
 {
 }
Exemplo n.º 4
0
 public CdCmd(SimpleShell shell) : base("cd", shell)
 {
 }
Exemplo n.º 5
0
 public Cmd(string name, SimpleShell shell)
 {
     this.name = name; this.shell = shell;
 }
Exemplo n.º 6
0
 public CatCmd(SimpleShell shell) : base("cat", shell)
 {
 }
Exemplo n.º 7
0
 public PwdCmd(SimpleShell shell) : base("pwd", shell)
 {
 }
Exemplo n.º 8
0
 public ExitCmd(SimpleShell shell) : base("exit", shell)
 {
 }