dircmd.py 168 B

12345678910111213
  1. #! python
  2. from buildcmd import BuildCmd
  3. class DirCmd(BuildCmd):
  4. def __init__(self):
  5. BuildCmd.__init__(self)
  6. def getCommand(self):
  7. return "dir"