for i in $(find . -type l); do
printf "%s;%s\n" $(readlink -f $i) $i;
done
# To collect the output in a file
for i in $(find . -type l); do printf "%s;%s\n" $(readlink -f $i) $i; done | tee symlinks.txt
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)