how to move a file in cmd code example
Example 1: how to move file in the command line
% mv ~/Downloads/MyFile.txt ~/Documents/Work/MyFile.txt
Example 2: move files command line windows
move "full_path" "new_full_Path"
% mv ~/Downloads/MyFile.txt ~/Documents/Work/MyFile.txt
move "full_path" "new_full_Path"