summaryrefslogtreecommitdiffstats
path: root/win/mkd.bat
diff options
context:
space:
mode:
Diffstat (limited to 'win/mkd.bat')
-rw-r--r--win/mkd.bat20
1 files changed, 20 insertions, 0 deletions
diff --git a/win/mkd.bat b/win/mkd.bat
new file mode 100644
index 0000000..9e1c073
--- /dev/null
+++ b/win/mkd.bat
@@ -0,0 +1,20 @@
+@echo off
+rem SCCS: %Z% $Id: mkd.bat,v 1.1 1998/07/01 18:32:09 escoffon Exp $
+
+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