Terminal - Copying files from one drive to another

DeadIntermediate

Solid State Member
Messages
14
Location
Duarte, CA
I am not sure if I have asked this question before, but I was curious about how would I be able to transfer files or folders / directories from one Hard Drive to another?

I want to be able to do this, because I have VPS and I notice that transferring files via Terminal is much faster than it is GUI.

I have already tried using google to try to search for it, but maybe I am not searching the right keywords for it.
 
either
Code:
xcopy /path/to/original /path/to/destination

for windows, or
Code:
cp -r /path/to/original /path/to/destination
for *nix
 
Back
Top Bottom