Created
February 9, 2016 04:31
-
-
Save lackneets/0d9c448ffd4615f156dc to your computer and use it in GitHub Desktop.
Cleanup garbage files generated from Mac and Win
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
set /p dirs="Where to cleanup? : " | |
echo %dirs% | |
del /s /f /a %dirs%\*.DS_STORE | |
del /s /f /a %dirs%\*._.* | |
del /s /f /a %dirs%\*Thumbs.db | |
echo Finished | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment