Remove .DS_Store and .AppleDouble
#!/usr/bin/env bash
find ./ -depth -name ".DS_Store" -exec rm {} \;
find ./ -depth -name ".AppleDouble" -exec rm -Rf {} \;
#!/usr/bin/env bash
find ./ -depth -name ".DS_Store" -exec rm {} \;
find ./ -depth -name ".AppleDouble" -exec rm -Rf {} \;