5

Possible Duplicate:
When should I use a trailing slash on a directory?

Does the slash make any difference?

1 Answers1

9

The slash gets passed on to the command in the parameter. It is up to the command to decide how to interpret it. For information on specific commands, refer to their documentation (Their man pages, other documentation or their source code). (I know rsync handles it differently and ls doesn't, at least not for normal directories)

According to some other questions, POSIX have some standards, but nothing forces utilities to keep to them.