1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 21:45:10 +01:00

Remove those pesky MacOS metafiles and dirs

This commit is contained in:
Michiel Scholten
2014-05-14 19:44:27 +02:00
parent ccaa6ea7bf
commit cb02f63c69

4
bin/clean_mac_files.sh Executable file
View File

@@ -0,0 +1,4 @@
#!/bin/bash
# Remove DS_Store stuff and ._* metafiles
find . -name '*.DS_Store' -type f -delete
find . -name '._*' -type f -delete