Skip to content

Instantly share code, notes, and snippets.

@chrisgoffinet
Created May 6, 2022 23:18
Show Gist options
  • Save chrisgoffinet/fde4a65c5cd569ba8a10a272af59b26c to your computer and use it in GitHub Desktop.
Save chrisgoffinet/fde4a65c5cd569ba8a10a272af59b26c to your computer and use it in GitHub Desktop.
[cron] Automatically ignore node_modules in Dropbox
#!/bin/sh
# * * * * * ~/bin/dropbox.sh >/dev/null 2>&1
echo "Dropbox: ignoring node_modules..."
find ~/Dropbox -name "node_modules" -prune -exec echo {} \; -exec xattr -w com.dropbox.ignored 1 '{}' +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment