Skip to content

Instantly share code, notes, and snippets.

@ProGM
Last active March 6, 2019 08:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ProGM/522a4b414249c44160db65206ae8b7c9 to your computer and use it in GitHub Desktop.
Save ProGM/522a4b414249c44160db65206ae8b7c9 to your computer and use it in GitHub Desktop.
Delete files from a google drive folder via command line
# Delete all files in the drive folder, excluding google docs
find . -type f \( ! -iname "*.gdoc" -and ! -iname "*.html" -and ! -iname "*.gsheet" -and ! -iname "*.gdraw" -and ! -iname "*.gslides" -and ! -iname "*.gform" -and ! -iname "*.gtable" -and ! -iname Icon\? \) -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment