/ Published in: Bash
Remove all symlinks in a directory, but leave the target files.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
find . -maxdepth 1 -type l -exec rm -f {} \;