i just created the symlink sudo ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib
and am wondering how i get rid of it if I wanted to. How would i do this?
Remove it just like you would any other file: rm /usr/lib/libmysqlclient.18.dylib
. rm will remove the symlink itself, not the file the link is pointing at.