forked from bartvdbraak/blender
5 lines
137 B
Plaintext
5 lines
137 B
Plaintext
|
#!/bin/sh -fx
|
||
|
# script to get rid of the grabage that MAC OSX drops in all the directories
|
||
|
|
||
|
find . -name .DS_Store -print -exec rm {} \;
|