dotfiles/remove-symlinks

9 lines
188 B
Text
Raw Normal View History

2021-05-13 21:42:40 -04:00
#!/bin/bash
find $HOME -maxdepth 1 -type l | while IFS= read -r symlink; do
if readlink "$symlink" | grep -q '^dotfiles/'; then
echo "removing $symlink"
rm "$symlink"
fi
done