summary refs log tree commit diff
path: root/prune.zsh
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2018-03-14 00:10:56 -0400
committerJune McEnroe <programble@gmail.com>2018-03-14 00:10:56 -0400
commit778e97f56d3dcd9f3bb3b69287a0193d35a63b8f (patch)
tree269248382d9327ddd52290e6b5aecf58504b7181 /prune.zsh
parentPHONY is a waste of time (diff)
downloadsrc-778e97f56d3dcd9f3bb3b69287a0193d35a63b8f.tar.gz
src-778e97f56d3dcd9f3bb3b69287a0193d35a63b8f.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