thedark Second Lieutenant
Joined: 30 Jul 2005
Posts: 1074
|
Posted: Wed Aug 03, 2005 8:45 pm Post subject: rename files |
|
|
mv - Used to move or rename files
Usage: mv file location (to move)
Usage: mv filename newfilename (to rename)
Example: mv index.html /var/www/index.html (to move)
Example: mv index.html index2.html (rename)
For more information, in a terminal, type man mv |
|