feed-image  Delivered by FeedBurner  ISSN 1836-5930





Visitors Online

We have 83 guests online

Poll

Which of following tutorials would you like to see on the Linuxconfig.org?
 
Partner Linux Sites
TuxMachines
DebianAdmin
Monsterb
LinuxBloggers
AdamsInfo
LinuxScrew
FreeSoftwareLinux
Jam's Ubuntu Blog
All For Linux

cp
Article Index
1. Name
2. Synopsis
3. Frequently used options
4. Examples

1. Name

cp [man page] - copy files and directories

2. Synopsis

cp [OPTION]... [-T] SOURCE DEST
cp [OPTION]... SOURCE... DIRECTORY
cp [OPTION]... -t DIRECTORY SOURCE...

3. Frequently used options

-i, --interactive
prompt before overwrite
-p same as --preserve=mode,ownership,timestamps
-R, -r, --recursive
copy directories recursively
-v, --verbose explain what is being done

4. Examples

Copy directory dir2 and its content into directory dir1:
cp -r dir2/ dir1/ 
Copy directory dir2 including its content
Copy all files from dir2 to dir1:
cp dir2/* dir1/ 
Copy all files
Copy file1 from dir1 to dir2 but prompt before overwrite:
cp -i dir1/file1 dir2/ 
Copy all files and prompt before overwrite
Copy file1 from dir1 to dir2 and preserve mode,ownership and timestamps:
cp -p dir1/file1 dir2/ 
copy file and preserve mode,ownership and timestamps