There is no rename function in Ubuntu Linux.
Instead, you simply move the file, giving it a new name. If you don’t actually mv it to another directory, then you have effectively renamed it:
mv filename_original filename_new
If you are trying to rename a directory, you need to use the -r recursive flag:
mv -r original_directoryname new_directoryname
Comments
Post a Comment