cp -r
Copy a directory and all its contents recursively
cp -r (recursive) copies a directory and everything inside it. Without -r, cp refuses to copy directories. Use cp -rp to preserve permissions and timestamps.
Example
$ cp -r config/ config.bak/
Tip: Type it yourself in the terminal below - reading is not the same as doing.