diff options
author | escoffon <escoffon> | 1998-07-01 18:04:01 (GMT) |
---|---|---|
committer | escoffon <escoffon> | 1998-07-01 18:04:01 (GMT) |
commit | 2f293ae32ffb26a2c129b2fd212d6604db9a0e0d (patch) | |
tree | 1e3b94575510764bdc6ef8869dea8098583394bd /win/mkd.bat | |
parent | a1ba6819992c6e968b8e5f36c37523f6966e1250 (diff) | |
download | tcl-2f293ae32ffb26a2c129b2fd212d6604db9a0e0d.zip tcl-2f293ae32ffb26a2c129b2fd212d6604db9a0e0d.tar.gz tcl-2f293ae32ffb26a2c129b2fd212d6604db9a0e0d.tar.bz2 |
Initial revision
Diffstat (limited to 'win/mkd.bat')
-rw-r--r-- | win/mkd.bat | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/win/mkd.bat b/win/mkd.bat new file mode 100644 index 0000000..61a66b8 --- /dev/null +++ b/win/mkd.bat @@ -0,0 +1,19 @@ +@echo off
+
+if exist %1 goto end
+
+if %OS% == Windows_NT goto winnt
+
+echo Add support for Win 95 please
+goto end
+
+goto success
+
+:winnt
+md %1
+if errorlevel 1 goto end
+
+:success
+echo created directory %1
+
+:end
|