script to remove .DS_Store files

time-shift
Houtan Bastani 2011-06-18 13:35:22 +02:00
parent 597a4b92a0
commit 518c536dc1
1 changed files with 2 additions and 0 deletions

2
osx/removeDsStore.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/bash
find . -name *.DS_Store -type f -exec rm {} \;