mirror of
https://github.com/Matir/skel.git
synced 2026-05-26 13:35:42 -07:00
5 lines
100 B
Bash
5 lines
100 B
Bash
prune-broken-symlinks() {
|
|
setopt localoptions nounset
|
|
find $1 -type l -xtype l -print -delete
|
|
}
|