I have two folders /var/first/app and /var/second/app. I have different files within both folders and few are same. I want to merge /var/second/app to /var/first/app. How can I do that?
Asked
Active
Viewed 2.9k times
7
David Foerster
- 36,890
- 56
- 97
- 151
3 Answers
7
Use something like:
cp -r /var/first/app /var/second/
rm -r /var/first/app
or change cp -r to cp -a to preserve ownership and timestamps.
You can also use -i to make sure what is going on. it's going to prompt you before overwriting anything.
Ravexina
- 57,256
0
You may first backup your destination folder (just in case) :
cp -r /var/first/app /var/first/app.backup
If you don't care overwriting files :
cp -fr /var/second/app /var/first/app
It will copy recursively the second folder into the first one, overwriting files with same names.
If you don't want to overwrite existing files :
cp -nr /var/second/app /var/first/app
If all is ok, you can remove the backup :
rm -rf /var/first/app.backup