dotfiles/remove-symlinks
2021-05-13 21:50:56 -04:00

8 lines
186 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