diff options
author | June McEnroe <june@causal.agency> | 2017-05-01 17:41:57 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2017-05-01 17:41:57 -0400 |
commit | 21619267718ce86e1d1ad89fb491ec9713943679 (patch) | |
tree | b7ce0928f380255ab8f122a475cddeaad2a3b096 | |
parent | Fix prune script (diff) | |
download | src-21619267718ce86e1d1ad89fb491ec9713943679.tar.gz src-21619267718ce86e1d1ad89fb491ec9713943679.zip |
Fix prune script loop
For loop was getting one string with several paths separated by newlines.
-rwxr-xr-x | prune.sh | 4 |
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 |