Skip to content

Instantly share code, notes, and snippets.

@jryio
Created July 11, 2016 19:01
Show Gist options
  • Save jryio/46fbd786513b3299b81b32eeb6966c0d to your computer and use it in GitHub Desktop.
Save jryio/46fbd786513b3299b81b32eeb6966c0d to your computer and use it in GitHub Desktop.
For migrating from Google Drive to another service, delete all files from Google Drive which are not Google Doc or Google Sheet files.
find . -type f \! \( -name "*.gdoc" -o -name "*.gsheet" \) -print -exec rm -rf {} +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment