Delete contents but not directory in Linux?

linux, ubuntu

Solution

If "dir" is the directory, give the commands,

cd dir   
rm -r *

Problem

How do you delete all content of directory but not delete the directory itself in Linux command line terminal?

Original source