diff options
Diffstat (limited to 'win')
-rw-r--r-- | win/mkd.bat | 43 | ||||
-rw-r--r-- | win/rmd.bat | 53 |
2 files changed, 49 insertions, 47 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 + + diff --git a/win/rmd.bat b/win/rmd.bat index 38b9268..f1fa10c 100644 --- a/win/rmd.bat +++ b/win/rmd.bat @@ -1,26 +1,27 @@ -@echo off
-rem RCS: @(#) $Id: rmd.bat,v 1.6 2001/09/08 22:30:15 mdejong Exp $
-
-if not exist %1\. goto end
-
-echo Removing directory %1
-
-if "%OS%" == "Windows_NT" goto winnt
-
-cd %1
-if errorlevel 1 goto end
-del *.*
-cd ..
-rmdir %1
-if errorlevel 1 goto end
-goto success
-
-:winnt
-rmdir %1 /s /q
-if errorlevel 1 goto end
-
-:success
-echo deleted directory %1
-
-:end
-
+@echo off +rem RCS: @(#) $Id: rmd.bat,v 1.7 2001/09/08 23:52:02 davygrvy Exp $ + +if not exist %1\. goto end + +echo Removing directory %1 + +if "%OS%" == "Windows_NT" goto winnt + +cd %1 +if errorlevel 1 goto end +del *.* +cd .. +rmdir %1 +if errorlevel 1 goto end +goto success + +:winnt +rmdir %1 /s /q +if errorlevel 1 goto end + +:success +echo deleted directory %1 + +:end + + |