dynare/osx/removeDsStore.sh

3 lines
83 B
Bash
Raw Normal View History

2011-06-18 13:35:22 +02:00
#!/bin/bash
2011-10-05 19:15:52 +02:00
# remove .DS_Store files
2011-06-18 13:35:22 +02:00
find . -name *.DS_Store -type f -exec rm {} \;