diff options
author | escoffon <escoffon@noemail.net> | 1998-07-01 18:04:00 (GMT) |
---|---|---|
committer | escoffon <escoffon@noemail.net> | 1998-07-01 18:04:00 (GMT) |
commit | 9a7053134f09463180d7d9d22c30971d60bdd15b (patch) | |
tree | 1e3b94575510764bdc6ef8869dea8098583394bd /win/mkd.bat | |
parent | c2e4ce2f943e79c3a6664378e99e9c6d63857112 (diff) | |
download | tcl-9a7053134f09463180d7d9d22c30971d60bdd15b.zip tcl-9a7053134f09463180d7d9d22c30971d60bdd15b.tar.gz tcl-9a7053134f09463180d7d9d22c30971d60bdd15b.tar.bz2 |
Initial revision
FossilOrigin-Name: 3e6f54583a01bc8c6aebe452235d04f11f70d22e
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
|