cp
Commandcp
The cp
command is used to copy files and directories in Linux. The most basic usage is:
cp [source_file] [destination]
This will copy the specified file from the source to the destination.
cp
cp
(Basic Copy)Copies a file or directory from one location to another:
cp file1.txt /home/user/directory/
cp -r
(Recursive Copy)Copies directories recursively (i.e., it copies the directory along with all its files and subdirectories):
cp -r directory1/ /home/user/directory2/
cp -f
(Force Overwrite)Forces the overwrite of existing files without confirmation:
cp -f file1.txt /home/user/directory/
cp -i
(Interactive Mode)Prompts the user for confirmation before overwriting files:
cp -i file1.txt /home/user/directory/
cp -u
(Update Only)Copies only when the source file is newer than the destination file or if the destination file does not exist:
cp -u file1.txt /home/user/directory/
cp -v
(Verbose Output)Displays detailed information about the copying process:
cp -v file1.txt /home/user/directory/
cp -p
(Preserve File Attributes)Preserves file attributes such as modification time, access time, and file permissions:
cp -p file1.txt /home/user/directory/
cp -a
(Archive Mode)Preserves the original file structure, attributes, and symbolic links while copying directories recursively:
cp -a directory1/ /home/user/directory2/
cp --parents
Copies the file along with its parent directory structure:
cp --parents dir1/dir2/file.txt /destination/
cp -n
(No Overwrite)Prevents overwriting existing files at the destination:
cp -n file1.txt /home/user/directory/
cp --help
Displays the help manual for the cp
command:
cp --help
Option | Description |
---|---|
cp [source_file] [destination] |
Basic file copy. |
cp -r [directory] |
Recursively copies directories and their contents. |
cp -f [file] |
Forces overwriting of existing files. |
cp -i [file] |
Prompts for confirmation before overwriting files. |
cp -u [file] |
Copies only if the source file is newer or the destination file doesn't exist. |
cp -v [file] |
Verbose mode, showing details during the copy process. |
cp -p [file] |
Preserves file attributes like timestamps and permissions. |
cp -a [directory] |
Preserves the file attributes, symbolic links, and structure while copying. |
cp --parents [file] |
Copies the file along with its parent directory structure. |
cp -n [file] |
Prevents overwriting existing files. |
cp --help |
Displays help information. |
For more detailed information, use the manual page for the cp
command:
man cp