Created
August 22, 2024 17:34
-
-
Save LuviKunG/a6e7fb4eebeeb31cea64d131675037e6 to your computer and use it in GitHub Desktop.
Clean all '.DS_Store' that contains in the sub folders.
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 | |
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