Skip to content

Instantly share code, notes, and snippets.

@yurrriq
Created September 1, 2017 21:13
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 yurrriq/2472883cc1c867651d3a5f4ba2987c5a to your computer and use it in GitHub Desktop.
Save yurrriq/2472883cc1c867651d3a5f4ba2987c5a to your computer and use it in GitHub Desktop.
Find and delete empty directories
#!/usr/bin/env bash
# Find and delete empty directories in $1
find $1 -empty -type d -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment