]> Tony Duckles's Git Repositories (git.nynim.org) - dotfiles.git/blob - bin/prune-dirs
.bashrc: Update prompt_color() to use `realpath` to get canonical $HOME
[dotfiles.git] / bin / prune-dirs
1 #!/bin/sh
2 # Usage: prune-dirs <path>...
3 # Remove empty directories under and including <path>s.
4
5 for dir in "$@"
6 do find "$dir" -type d -empty -depth | xargs rmdir
7 done