mirror of
https://github.com/Michaelangel007/apple2gs_shr_converter.git
synced 2024-12-05 11:52:36 +00:00
12 lines
389 B
Batchfile
Executable File
12 lines
389 B
Batchfile
Executable File
@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
|