thedark Second Lieutenant
Joined: 30 Jul 2005
Posts: 1074
|
Posted: Wed Aug 03, 2005 8:43 pm Post subject: copy files |
|
|
cp - Used to copy files/directories from one location to another
Usage: cp file newlocation
Example: cp /home/joey/index.html /var/www/index.html
Example: cp /home/joey/* /var/www/ (this will copy everything in /home/joey to /var/www/)
For more information, in a terminal, type man cp |
|