diff options
author | davygrvy <davygrvy@pobox.com> | 2001-09-08 23:52:02 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2001-09-08 23:52:02 (GMT) |
commit | aefa6fb76280dbf4f20b6e701ae3bc49cd52c390 (patch) | |
tree | 5e2c73e9ab15780feb94ec0fea12ea72b1da18b9 /win/mkd.bat | |
parent | 87067571d2361e18c7ba3dcd929d22189d1e9acf (diff) | |
download | tcl-aefa6fb76280dbf4f20b6e701ae3bc49cd52c390.zip tcl-aefa6fb76280dbf4f20b6e701ae3bc49cd52c390.tar.gz tcl-aefa6fb76280dbf4f20b6e701ae3bc49cd52c390.tar.bz2 |
* win/mkd.bat:
* win/rmd.bat: made these text files, text files again.
[Patch: 451333]
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 769e604..690a29b 100644 --- a/win/mkd.bat +++ b/win/mkd.bat @@ -1,21 +1,22 @@ -@echo off
-rem RCS: @(#) $Id: mkd.bat,v 1.6 2001/09/08 22:30:15 mdejong Exp $
-
-if exist %1\. 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 created directory %1
-
-:end
-
+@echo off +rem RCS: @(#) $Id: mkd.bat,v 1.7 2001/09/08 23:52:02 davygrvy Exp $ + +if exist %1\. 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 created directory %1 + +:end + + |