cp

From wikieduonline
Revision as of 06:07, 30 August 2022 by Welcome (talk | contribs) (→‎Related commands)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

cp[1] command is used for copying files and directories. It lacks progress bar indicator[2], but you can use progress -w or progress -m command to display the percentage of copied data or use rsync[3] command.

Ansible also includes a cp module with limited scalability (>hundreds of files) [4]

Options[edit]

-a, --archive
-l, --link hard link files instead of copying
-p same as --preserve=mode,ownership,timestamps
-R, -r, --recursive
--reflink[=WHEN] control clone/CoW copies. --reflink=always
-v verbose, showing files as they are copied.
cp --help
cp: illegal option -- -
usage: cp [-R [-H | -L | -P]] [-fi | -n] [-aclpsvXx] source_file target_file
       cp [-R [-H | -L | -P]] [-fi | -n] [-aclpsvXx] source_file ... target_directory

Examples[edit]

cp -a /source/. /dest/
cp -rp /home/origin /home/destination
cp -rp /home/origin/* /home/destination/
cp file.txt file-`date --iso`.txt

cp /etc/httpd/httpd.{,.BAK}

cp -R -af

Activities[edit]

  1. Understand the differences between cp, scp and rsync: https://stackoverflow.com/questions/20244585/how-does-scp-differ-from-rsync
  2. Understand --sparse option and usage cases
  3. Learn how to not overwrite a file with -n, --no-clobber option[5] or using rsync -a -v --ignore-existing src dst

Related commands[edit]

See also[edit]

Text is available under the Creative Commons Attribution-ShareAlike License; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy.

Source: https://en.wikiversity.org/wiki/Linux/Basic_commands/cp

Advertising: