| Command | Switch | Result |
| cp | source destination | If destination file does not exists then it will be created before copying other wise overwritten. |
| cp | src1 src2 src3 destination | copy more than one files into a single destination |
| cp | src* destination | copy all files beginning with src into destination |
| cp | -i src destination | warns user before overwriting |
| cp | -R srcdir destination | Copy directory structure |
Posts which you will also like.
-
Recently I participated in Google Code Jam 2012. It is one of greatest international programming contest in the world and It is organiz...
-
In this Java tutorial We discuss Doubly Linked List.Doubly linked list is a two way linked list where each node in the list has two links....
-
In this program a ball is created which bounces back and forth and also changes its color on collision with the walls of the contai...
-
Fatal error: the system has become unstable or is busy," it says. "Enter to return to Windows or press Control-Alt-Delete to rest...
-
In this post I will develop a java program to implement linked list from scratch.Creating a linked list in java is much easier than creati...
-
Consumer Producer is a problem related to sharing of data.In this problem producer and consumers operates simultaneously on the shared dat...
-
Great news for our hacker friends a new version of popular penetration testing tool BackTrack 5 R2 is released. BackTrack 5 R2 will prov...
-
public class CircularLinkedList { private Node start; private int count; public void append( int x){ count++; ...
-
While installing the BackTrack 5 KDE(64 bit) OS when you try to enter into GUI mode via typing startx you get a strange error message like...
-
Circular Doubly Linked List is very much similar to Doubly Linked List with few differences such as there is no end of the list i.e Head n...
Wednesday, December 1, 2010
Basic UNIX/LINUX command:cp
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment
Your comment may wait for moderation....