How do you copy a directory with many files and folders into
another directory?
Answers were Sorted based on User's Feedback
Answer / guest
cp -R <source_dir> <dest_dir>
Ex: cp GUI ../TEST
| Is This Answer Correct ? | 11 Yes | 2 No |
Answer / ashok jayan
cp -rf <source_dir> <dest_dir>
Note: r - Recursively, f - Forcefully
| Is This Answer Correct ? | 8 Yes | 3 No |
Will rm -r* removes hidden files?
What command will bring user back to their home directory in UNIX?
what is the use of wild cards?
what are wild cards?
When the shell is reading the command line what is the difference between text enclosed between double quotes ( ” ) and text enclosed between signal quotes ( ’ )?
Can a process kill itself in UNIX/or in its various versions?
What is nr in awk command?
What command is used to replace the existing string with some other?
How do I use nslookup?
What is rmdir command?
what is Online(STM) and offline diagnostics in HP-UX?
Can you write a command to erase all files in the current directory including all its sub-directories?