summary refs log tree commit diff
path: root/prune.sh
diff options
context:
space:
mode:
Diffstat (limited to 'prune.sh')
-rwxr-xr-xprune.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/prune.sh b/prune.sh
index 361e1a97..09ed8d35 100755
--- a/prune.sh
+++ b/prune.sh
@@ -4,9 +4,7 @@
 
 set -o errexit -o nounset -o pipefail
 
-links=$(find -L ~ -type l -lname "$PWD/*")
-
-for link in $links; do
+find -L ~ -type l -lname "$PWD/*" | while read link; do
   rm "$link"
   echo "$link"
 done