The -r option stands for "recursive" in the context of copying directories. When you use the -r option with the cp command, it allows you to copy a directory and all of its contents, including subdirectories and files, to the specified destination.
Here’s an example of how to use it:
cp -r source_directory destination_directory
