diff options
Diffstat (limited to 'win/mkd.bat')
-rw-r--r-- | win/mkd.bat | 43 |
1 files changed, 22 insertions, 21 deletions
diff --git a/win/mkd.bat b/win/mkd.bat index 0f2ae76..f9f3eaf 100644 --- a/win/mkd.bat +++ b/win/mkd.bat @@ -1,21 +1,22 @@ -@echo off -rem RCS: @(#) $Id: mkd.bat,v 1.3 1998/09/30 20:19:00 escoffon Exp $ - -if exist %1\tag.txt goto end - -if "%OS%" == "Windows_NT" goto winnt - -md %1 -if errorlevel 1 goto end - -goto success - -:winnt -md %1 -if errorlevel 1 goto end - -:success -echo TAG >%1\tag.txt -echo created directory %1 - -:end +@echo off
+rem RCS: @(#) $Id: mkd.bat,v 1.4 2001/09/08 22:34:42 mdejong Exp $
+
+if exist %1\tag.txt goto end
+
+if "%OS%" == "Windows_NT" goto winnt
+
+md %1
+if errorlevel 1 goto end
+
+goto success
+
+:winnt
+md %1
+if errorlevel 1 goto end
+
+:success
+echo TAG >%1\tag.txt
+echo created directory %1
+
+:end
+
|