Skip to content

Instantly share code, notes, and snippets.

@Ravendwyr
Created August 8, 2013 11:10
Show Gist options
  • Save Ravendwyr/6183747 to your computer and use it in GitHub Desktop.
Save Ravendwyr/6183747 to your computer and use it in GitHub Desktop.
Mass delete .DS_Store files.
#! /bin/sh
echo "Beginning cleanup..."
cd /
find . -name '*.DS_Store' -type f -delete
echo "Cleanup complete."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment