move file to directory linux code example
Example 1: linux move everything in a directory to another directory
mv -v ~/Downloads/* ~/Videos/
Example 2: bash move
mv [options] <source-filepath> <destination-filepath>
mv "C:\Users\File_Name.txt" "C:\Users\SubFolder\File_Name.txt"
mv -u "C:\Users\File_Name.txt" "C:\Users\SubFolder\File_Name.txt"
Example 3: linux move file
mv [options] <source-filepath> <destination-filepath>
mv "C:\Users\File_Name.txt" "C:\Users\SubFolder\File_Name.txt"
mv -u "C:\Users\File_Name.txt" "C:\Users\SubFolder\File_Name.txt"
OPTION DESCRIPTION
mv -f force move by overwriting destination file without prompt
mv -i interactive prompt before overwrite
mv -u update - move when source is newer than destination
mv -v verbose - print source and destination files
Example 4: move directory with files linux
how to move a folder/Directory in Linux with files
mv /path/to/source /path/to/destination
mv Reports tools/Reports
Example 5: how to move file in directory in linux
mv file dir
Example 6: linux command to move a file to another directory
mv filename directoryname