Skip to content

Instantly share code, notes, and snippets.

@LuviKunG
Created August 22, 2024 17:34
Show Gist options
  • Save LuviKunG/a6e7fb4eebeeb31cea64d131675037e6 to your computer and use it in GitHub Desktop.
Save LuviKunG/a6e7fb4eebeeb31cea64d131675037e6 to your computer and use it in GitHub Desktop.
Clean all '.DS_Store' that contains in the sub folders.
@echo off
for /r %%i in (.DS_Store) do (del "%%i")
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment