I have testlink -> testtarget// and rm and rmdir report the following:
$ rm testlink/
rm: cannot remove 'testlink/': Is a directory
$ rmdir testlink/
rmdir: failed to remove 'testlink/': Not a directory
Of course I can remove the symlink with rm testlink, but why does Linux report that the symlink is both a directory and not a directory?