summary refs log tree commit diff
path: root/prune.sh
blob: 09ed8d3564d5f07c20d28b35a96361be91a26bb7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env zsh

# Remove symbolic links in ~ to files that no longer exist.

set -o errexit -o nounset -o pipefail

find -L ~ -type l -lname "$PWD/*" | while read link; do
  rm "$link"
  echo "$link"
done
ence testsJune McEnroe 2020-07-14Install up CGI with mode 700June McEnroe 2020-07-14Check that there is upload dataJune McEnroe 2020-07-14Add CGI upload program for temp.causal.agencyJune McEnroe 2020-07-10Add The Broken KingdomsJune McEnroe 2020-07-08Add facebook and twitter to title user-agentJune McEnroe 2020-06-30Tweak causal.agency for mostly no reasonJune McEnroe 2020-06-30Add Ancillary JusticeJune McEnroe 2020-06-26Add password non-manager to planJune McEnroe 2020-06-26Tweak TF2 sensitivities once moreJune McEnroe 2020-06-19Add note about litterbox bot useJune McEnroe 2020-06-19Publish "IRC suite"June McEnroe 2020-06-17Add errors to link.shJune McEnroe