From 21619267718ce86e1d1ad89fb491ec9713943679 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Mon, 1 May 2017 17:41:57 -0400 Subject: Fix prune script loop For loop was getting one string with several paths separated by newlines. --- prune.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'prune.sh') 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 -- cgit 1.4.1