bash rename file

Shell
mv oldname newname# Linux - Bash

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

# example-1 (fundamental - no switches):
mv "Initial_File_Name.txt" "New_File_Name.txt"
Source

Also in Shell: