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