The answer is True.
The cp
command is used to copy files and directories. To copy a directory, you can use the -r
option. For example, to copy the directory /home/user/Documents
to /home/user/Documents2
, you would use the following command:
cp -r /home/user/Documents /home/user/Documents2
This would create a new directory called Documents2
in the /home/user
directory, and it would copy all of the files and subdirectories from Documents
to Documents2
.
The cp
command can also be used to copy files to a different location. For example, to copy the file /home/user/Documents/file.txt
to /home/user/Desktop
, you would use the following command:
cp /home/user/Documents/file.txt /home/user/Desktop
This would create a new copy of the file file.txt
in the /home/user/Desktop
directory.
The cp
command is a powerful tool that can be used to copy files and directories. It is an essential part of the Linux command line.