How to copy a directory

$ cp -r [source] [dest]

Command
cp
Description
Copy a directory and all its contents recursively. Usage: cp -r [source_dir] [dest_dir].
Deep Dive
The -r (recursive) flag is required when copying directories. -R is also commonly used and works similarly.