diff options
Diffstat (limited to '')
-rw-r--r-- | prune.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/prune.sh b/prune.sh index d41c6bc6..fabe865f 100644 --- a/prune.sh +++ b/prune.sh @@ -1,7 +1,7 @@ #!/bin/sh set -eu -find -L ~ -type l -lname "${PWD}/*" | while read -r link; do +find -L ~/.config ~/.local -type l -lname "${PWD}/*" | while read -r link; do echo "$link" rm "$link" done |