I created a link using the following command.
sudo ln -fs /usr/share/icons/Cyclone/cursor.theme etc/alternatives/x-cursor-theme
I now want to delete this link, as it seems to create some problems. Is this done by deleting the cursor.theme file? What are the steps to achieve a complete deletion?
unlinkis not limited to removing symbolic links. It will also delete ordinary files, same asrm. In particular, users should be aware thatunlinkis in no way safer than the widely usedrmcommand. (Unlink simply "avoids the bells and whistles of the more commonly-usedrmcommand".) – Eliah Kagan Apr 09 '15 at 05:17