summary refs log tree commit diff
path: root/prune.zsh
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-03-14 00:10:56 -0400
committerJune McEnroe <june@causal.agency>2018-03-14 00:10:56 -0400
commitd7842c2b96da32bcfb181a88c34a4b67cf6bc815 (patch)
tree25ca849742e2617fd35b583da611212f868b5491 /prune.zsh
parentPHONY is a waste of time (diff)
downloadsrc-d7842c2b96da32bcfb181a88c34a4b67cf6bc815.tar.gz
src-d7842c2b96da32bcfb181a88c34a4b67cf6bc815.zip
Combine home-related scripts
Diffstat (limited to 'prune.zsh')
-rwxr-xr-xprune.zsh9
1 files changed, 0 insertions, 9 deletions
diff --git a/prune.zsh b/prune.zsh
deleted file mode 100755
index 26dd27cc..00000000
--- a/prune.zsh
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/env zsh
-set -o errexit -o nounset -o pipefail
-
-# Remove broken symbolic links in ~.
-
-find -L ~ -type l -lname "$PWD/*" | while read link; do
-    rm "$link"
-    echo "$link"
-done