Quantcast
Channel: How can I copy the contents of a folder to another folder in a different directory using terminal? - Ask Ubuntu
Browsing latest articles
Browse All 9 View Live

Answer by Super Kai - Kazuya Ito for How can I copy the contents of a folder...

This code with Flag "-R" copies perfectly all the contents of "folder1" to existing "folder2":cp -R folder1/. folder2Flag "-R" copies symbolic links as well but Flag "-r" skips symbolic links so Flag...

View Article



Answer by zarpio for How can I copy the contents of a folder to another...

I like this commandrsync -av --progress ~/code/project-source/. ~/code/project-destination --exclude .git --exclude node_modulesSome of the commonly used options in rsync command are listed below:-v,...

View Article

Answer by Karl Morrison for How can I copy the contents of a folder to...

Simple example.Copy the directory dir_1 and its contents (files) into directory dir_2:cp -r ./dir_1 ./dir_2# orcp -r ./dir_1/ ./dir_2/# Results in: ./dir_2/dir_1/_files_Copy only the contents (files)...

View Article

Answer by vimal krishna for How can I copy the contents of a folder to...

If there are two folders: (with write permission)drwxr-xr-x 4 vimal vimal 4096 Sep 9 12:17 .drwxr-xr-x 3 root root 4096 Aug 18 14:35 ..drwxrwxrwx 6 vimal vimal 4096 Sep 9 12:15 DATAdrwxrwxrwx 7 vimal...

View Article

Answer by Dilip Rajkumar for How can I copy the contents of a folder to...

Check this http://www.cyberciti.biz/faq/copy-folder-linux-command-line/ for more information on copying folder. Hope this helps.cp Commandcp is a Linux command for copying files and directories. The...

View Article


Answer by enzotib for How can I copy the contents of a folder to another...

You can copy the content of a folder /source to another existing folder /dest with the commandcp -a /source/. /dest/The -a option is an improved recursive option, that preserve all file attributes, and...

View Article

Answer by Panther for How can I copy the contents of a folder to another...

An alternate is rsync:rsync -a source/ destinationThe advantages of rsync are:After the initial sync, it will then copy only the files that have changed.You can use it over a network, convenient for...

View Article

Answer by Bruno Pereira for How can I copy the contents of a folder to...

Lets say you have a folder called folder1 in your ~, inside folder1 is 1 file called file1 and 2 folders called sub1 and sub2 each with other files and folders inside them.To copy all the contents of...

View Article


How can I copy the contents of a folder to another folder in a different...

I am trying to copy the contents of a folder to another folder in a different directory using terminal.Would somebody be able to provide me an example of the command line syntax required to achieve this?

View Article

Browsing latest articles
Browse All 9 View Live




Latest Images