Files
skel/dotfiles/zshrc.d/prune-broken-symlinks.zsh
2015-09-11 18:22:57 -07:00

5 lines
100 B
Bash

prune-broken-symlinks() {
setopt localoptions nounset
find $1 -type l -xtype l -print -delete
}