Skip to content

Instantly share code, notes, and snippets.

@darinronne
Last active November 1, 2017 19:09
Show Gist options
  • Save darinronne/27fad0483cee0a0727c5f818088ace8c to your computer and use it in GitHub Desktop.
Save darinronne/27fad0483cee0a0727c5f818088ace8c to your computer and use it in GitHub Desktop.
Remove all _notes directories using Terminal
find [site_directory]/* -name _notes -print0 | xargs -0 rm -rf

Replace [site_directory] with root site folder path.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment