From d631d992c61c1f3310ca248fcdb5fca57d4a854f Mon Sep 17 00:00:00 2001 From: Curtis 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