Skip to content

Commit

Permalink
Create mac-delete-ds-store.md
Browse files Browse the repository at this point in the history
  • Loading branch information
petermekhaeil authored Nov 21, 2023
1 parent b779215 commit b2b227c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions learnings/mac-delete-ds-store.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Recursively delete .DS_Store

Delete all `.DS_Store` found within a directory recursively:

```bash
find . -name '.DS_Store' -type f -delete -print
```

`-print` will also print the path of the file when deleting.

0 comments on commit b2b227c

Please sign in to comment.