Member
margarett
How to move files in a Linux terminal?
alivia
@margarett In Unix, when moving files this implies simply renaming a file. The ‘mv’ command will rename file a to a file b. For example
1
mv filea fileb
Unlike the ‘cp’ command, you will only end up with a single file at the end of this.