Re: [newbie] How to undo a symbolic link?

2004-07-26 Thread Thomas Ewald
Don't you just delete the "copy"?Paul Smith [EMAIL PROTECTED] wrote: Dear AllI would like to know how to undo the following symbolic link:ln -f -s /opt/winetools/wt210 /usr/bin/wtAny ideas?Thanks in advance,PaulWant to buy your Pack or Services

Re: [newbie] How to undo a symbolic link?

2004-07-26 Thread Clint Harshaw
Paul Smith wrote: Dear All I would like to know how to undo the following symbolic link: ln -f -s /opt/winetools/wt210 /usr/bin/wt Any ideas? Thanks in advance, Paul Hi Paul: How about if you try this: rm name_of_what_you_want_to_delete So for your example, if you want to delete /usr/bin/wt, you

Re: [newbie] How to undo a symbolic link?

2004-07-26 Thread Paul Smith
Clint Harshaw wrote: I would like to know how to undo the following symbolic link: ln -f -s /opt/winetools/wt210 /usr/bin/wt How about if you try this: rm name_of_what_you_want_to_delete So for your example, if you want to delete /usr/bin/wt, you could: rm /usr/bin/wt Thanks Clint and Thomas for

Re: [newbie] How to undo a symbolic link?

2004-07-26 Thread Thomas Ewald
Wow...first time I was actually able to be helpful. ;-) Progress! Tom EwaldPaul Smith [EMAIL PROTECTED] wrote: Clint Harshaw wrote: I would like to know how to undo the following symbolic link: ln -f -s /opt/winetools/wt210 /usr/bin/wt How about if you try this: rm