CoreValidation: Moved common parts of command line build script to Utilities.
diff --git a/CMSIS/Utilities/buildutils/dircmd.py b/CMSIS/Utilities/buildutils/dircmd.py
new file mode 100644
index 0000000..5a0f211
--- /dev/null
+++ b/CMSIS/Utilities/buildutils/dircmd.py
@@ -0,0 +1,13 @@
+#! python
+
+from buildcmd import BuildCmd
+
+class DirCmd(BuildCmd):
+
+  def __init__(self):
+    BuildCmd.__init__(self)
+    
+  def getCommand(self):
+    return "dir"
+
+    
\ No newline at end of file