How to copy multiple files and directories into some other
directory?
Answers were Sorted based on User's Feedback
Answer / chets
cp <src_file1> <src_file2> <src_file3> <dest_dir>
In this case, each of the source files is copied into the
destination directory. This form of the command can be used
to copy all files in one directory into another directory.
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / sangu
sorry for the previous post
cp -r test2 test1/
will work.
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / sangu
If suppose the current working directory is test
i.e /home/test which contains the subdirectories test1
test2 if test2 to be copied in test1 the command is
cp test2 test1/
Now test1 will contain the test2 directory
| Is This Answer Correct ? | 1 Yes | 2 No |
When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include<stdlib.h> # include <stdio.h> int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:
Is ‘du’ a command? If so, what is its use?
what is ls -ltd?
what is the difference between Touch & cat command
What is the behavioural difference between cmp and diff commands?
why unix commands can be divided into internal and external commands?
hi i have directories within the directory. Now i want to copy the directory along with all directories included in it to one location by using copy command? what is the command
What does grep v do?
Explain ‘library functions’ with respect to unix commands?
what are the differences between CUI and GUI interfaces?
52 Answers College School Exams Tests, HCL, HP, IBM, IBMR, NIIT, Talco, Wipro,
Assume that a file’s permissions give you read and write access. What operations can you perform on the file if it is in a directory which has “r”(read) only process? What operations can you perform on the file if it is in a directory which has “x”(execute) only access?
How many bits use for MAC address?