Created
July 11, 2016 19:01
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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