bash and tab-completion of symlinked directories
(in Computing on 2008/11/08)OOTB on my desktop, tab-completion of a symlink to a directory doesn’t include the trailing slash unless you tab twice. This apparently comes from readline and not bash itself, and your ~/.inputrc can change the behavior:
mark-symlinked-directories
If set to ‘on’, completed names which are symbolic links to directories have a slash appended (subject to the value of mark-directories). The default is ‘off’.
$ cat /home/covener/.inputrc
set mark-directories On
set mark-symlinked-directories On

