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