Skip to content

Instantly share code, notes, and snippets.

@cmbaughman
Created August 5, 2020 18:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmbaughman/3f9353f114607e6ddd399f91add5a936 to your computer and use it in GitHub Desktop.
Save cmbaughman/3f9353f114607e6ddd399f91add5a936 to your computer and use it in GitHub Desktop.
Clean up empty directories relative to the current directory
#!/bin/bash
find . -type d -empty -exec rm -i -R {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment