[4/12/2004 12:10 PM] Karl R. Balsmeier :
> How do I remove the symlink without trashing the exim binary?
>
> man ls does not show this. rm will remove the symlink, but the binary
> will go also... do I just use -f?
your syntax for ln is wrong
ln -s source target
for example if you want to create a symlink foo to a file bar,
ln -s bar foo
srs