Q:

rename file linux

mv oldnamefile1 newnamefile1
9
To use mv to rename a file type mv , a space, the name of the file, a space, and the new name you wish the file to have.
Then press Enter. You can use ls to check the file has been renamed
eg. mv demo.py demo1.py
1
# Linux - Bash

# syntax:
mv <source-filename> <destination-filename>

# example-1 (fundamental - no switches):
mv "Initial_File_Name.txt" "New_File_Name.txt"
4
mv oldfile.txt newfile.txt
0
mv oldname newname
3
mv "old location" "new location"

mv /home/user/my_static /home/user/static

mv "file1.ext" "file2.ext"
3
mv (option) filename1.ext filename2.ext
5

New to Communities?

Join the community