How do you copy a directory with many files and folders into
another directory?

Answer Posted / guest

cp -R <source_dir> <dest_dir>

Ex: cp GUI ../TEST

Is This Answer Correct ?    11 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is “chmod” command?

752


Who command in unix operating system?

856


How to find $ai_serual resolved path by using unix

1265


How to use grep command to list find the records of a file containing 10 different strings?

838


Which command is used to kill the last background job?

1010


How to display no of records in oracle using unix command?

805


What does 'mkdir' command do in UNIX?

907


How can you see the command line history?

824


Which command will print your home directory on screen?

788


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 # include 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:

1970


What is grep short for?

742


What do know about tee command?

817


What are file commands?

863


What's a command word?

802


Which command is used to delete all files in the current directory and all its sub-directories?

937