Skip to content

Instantly share code, notes, and snippets.

@lackneets
Created February 9, 2016 04:31
Show Gist options
  • Save lackneets/0d9c448ffd4615f156dc to your computer and use it in GitHub Desktop.
Save lackneets/0d9c448ffd4615f156dc to your computer and use it in GitHub Desktop.
Cleanup garbage files generated from Mac and Win
@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