Possible Duplicate:
How linux handles multiple path separators (/home////username///file)
Most commands I use in linux behave exactly the same whether I include the trailing slash / character on the end of a directory name or not.
For example:
ls /home/cklein
ls /home/cklein/
cp foo bar
cp foo/ bar/
When does this trailing slash matter? What is the semantic meaning of the trailing slash?

