| 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...
-
public class CircularLinkedList { private Node start; private int count; public void append( int x){ count++; ...
-
Consumer Producer is a problem related to sharing of data.In this problem producer and consumers operates simultaneously on the shared dat...
-
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...
-
Stronghold Cruasader Cheat: ------ Submitted by: Rajeev Press Ctrl+Type triblade at main menu Press Ctrl+x to increase the Gold at Unl...
-
Description of the Problem: In this java tutorial we discuss about Josephus problem and its solution. The Josephus Problem is a famou...
-
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...
-
Replace each digit with the result of multiplying 7 with the digit and getting remainder after dividing the new value by 10. Swap the fir...
-
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...
-
Scripting is very powerful feature of Linux.It helps the administrator of Linux to automate the daily routine task so it is recommended to...
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....