There are two ways you can remove a symlink in Linux:
rm ~/mySymLink
Or the safe way:
unlink ~/mySymLink
Tip: Don’t add a trailing “/” to the end of the directory/link name.
There are two ways you can remove a symlink in Linux:
rm ~/mySymLink
Or the safe way:
unlink ~/mySymLink
Tip: Don’t add a trailing “/” to the end of the directory/link name.