command to rename code example
Example 1: bash rename
# Linux - Bash
# syntax:
mv <source-filename> <destination-filename>
# example-1 (fundamental - no switches):
mv "Initial_File_Name.txt" "New_File_Name.txt"
Example 2: rename file command line windows
# how to rename a folder in the windows terminal
$ rename old_folder new folder
# how to rename a file in the windows terminal
$ rename full_path new_name