| 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.
-
In this post I am going to demonstrate how to divide an image into equal parts. Here I have used simple Java image api to manipulate t...
-
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...
-
Entry to demonoid: Demonoid is one of the top most ranked torrent tracker website.One can only register to this site either through invi...
-
Here is the complete tutorial regarding this : A subtitle is a textual version of a movie’s dialogue. Subtitles are helpful if you are view...
-
Sometimes in our java code we find that equality comparison operators(equals() and ==) do not work as expected.But why is that happening ...
-
public class CircularLinkedList { private Node start; private int count; public void append( int x){ count++; ...
-
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....
-
Here in this post I created a java program which deletes the directories which are non empty. In this program I have used recursion appr...
-
This program counts the no. of words in string entered by user.This program is space resistant up to two spaces.In similar way we can make i...
-
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...
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....