apple2gs_shr_converter/SHR/batchfiles/kill.bat

12 lines
389 B
Batchfile
Raw Normal View History

2016-08-24 16:54:56 +00:00
@echo off
REM kill.bat - house-cleaning batch file
REM cleans unwanted input and output from working directory
REM must be run from the command line
REM killpalette.bat must also be run after kill.bat to remove unused external palette directories
if "%1" == "" goto ENDER
dir %1*.* /s /b > work.txt
for /F %%j in (work.txt) do del %%j
del work.txt
:ENDER
REM this is the end