cp cp (1) - copy files and directories
cp cp (1) - copy files
Please see the following examples for 'cp' command:
# ls -l toc.html-rw-rw-r-- 1 root root 3049 2011-04-07 23:48 toc.html
# file toc.htmltoc.html: html document
# cp toc.html.bak # ls -l toc.html toc.html.bak-rw-rw-r-- 1 root root 3049 2011-04-07 23:48 toc.html -rwxr-xr-x 1 root root 3049 2011-04-08 01:52 toc.html.bak
# du -sh toc.html*4.0K toc.html
3.5K toc.html.bak
# du -sh toc.html toc.html.bak4.0K toc.html
3.5K toc.html.bak
# diff toc.html toc.html.bak # cmp toc.html toc.html.bak # ls -l toc.html toc.html.bak-rw-rw-r-- 1 root root 3049 2011-04-07 23:48 toc.html -rwxr-xr-x 1 root root 3049 2011-04-08 01:52 toc.html.bak
# cp -p toc.html toc.html.newbak # ls -l toc.html toc.html.bak toc.html.newbak-rw-rw-r-- 1 root root 3049 2011-04-07 23:48 toc.html -rwxr-xr-x 1 root root 3049 2011-04-08 01:52 toc.html.bak -rw-rw-r-- 1 root root 3049 2011-04-07 23:48 toc.html.newbak
# ls -ld TOCdrwxr-xr-x+ 5 root root 8 2011-02-26 13:55 TOC
# file TOCTOC: directory
# ls -ld TOC TOC.bakdrwxr-xr-x+ 5 root root 8 2011-02-26 13:55 TOC drwxr-xr-x+ 5 root root 8 2011-02-26 13:55 TOC.bak
# du -sh TOCC TOC.bak343K TOC 343K TOC.bak
# diff TOC.html TOC.bakdiff: TOC.html: No such file or directory
# diff TOC TOC.bakCommon subdirectories: TOC/Media and TOC.bak/Media Common subdirectories: TOC/Scripts and TOC.bak/Scripts Common subdirectories: TOC/Table_of_Contents_files and TOC.bak/Table_of_Contents_files
# diff TOC TOC.bak-TOC TOC.bakrTOC TOC.bak TOC TOC.bak # ls -l TOCtotal 17 -rw-r--r-- 1 501 501 679 2011-02-15 00:04 feed.xml -rw-r--r-- 1 501 501 319 2011-02-15 00:04 index.html drwxr-xr-x+ 2 501 501 3 2011-02-15 00:04 Media drwxr-xr-x+ 3 501 501 4 2011-02-15 00:04 Scripts drwxr-xr-x+ 2 501 501 14 2011-02-15 00:04 Table_of_Contents_files -rw-r--r-- 1 root root 9529 2011-02-26 13:55 Table_of_Contents.html
# ls -l TOC.baktotal 17 -rw-r--r-- 1 501 501 679 2011-02-15 00:04 feed.xml -rw-r--r-- 1 501 501 319 2011-02-15 00:04 index.html drwxr-xr-x+ 2 501 501 3 2011-02-15 00:04 Media drwxr-xr-x+ 3 501 501 4 2011-02-15 00:04 Scripts drwxr-xr-x+ 2 501 501 14 2011-02-15 00:04 Table_of_Contents_files -rw-r--r-- 1 root root 9529 2011-02-26 13:55 Table_of_Contents.html
Please click on " cp in PDF " format.
Please click on " cp in HTML " format.