dotfiles/remove-symlinks

8 lines
188 B
Bash
Executable file

#!/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