move linux terminal code example
Example 1: 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 2: move command in linux
mv filename dirname
Example 3: move command in linux
move command : mv filename dirname
remove command : rm -r filename
copy command : cp filename dirname
zip command : zip -r filename.zip foldername
unzip command : unzip filename.zip -d dirname