linux move file to another directory code example
Example 1: bash move
# Linux - Bash
# syntax:
mv [options] <source-filepath> <destination-filepath>
# example-1 (fundamental - no switches):
mv "C:\Users\File_Name.txt" "C:\Users\SubFolder\File_Name.txt"
# example-2 (fundamental - with switches):
mv -u "C:\Users\File_Name.txt" "C:\Users\SubFolder\File_Name.txt"
# + ------ + ---------------------------------------------------------- +
# | OPTION | DESCRIPTION |
# + ------ + ---------------------------------------------------------- +
# | -f | force move by overwriting destination file without prompt |
# | -i | interactive prompt before overwrite |
# | -u | update - move when source is newer than destination |
# | -v | verbose - print source and destination files |
# | man mv | help manual |
# + ------ + ---------------------------------------------------------- +
Example 2: linux move file
# Linux - Bash
# syntax:
mv [options] <source-filepath> <destination-filepath>
# example-1 (fundamental - no switches):
mv "C:\Users\File_Name.txt" "C:\Users\SubFolder\File_Name.txt"
# example-2 (fundamental - with switches):
mv -u "C:\Users\File_Name.txt" "C:\Users\SubFolder\File_Name.txt"
# Switches
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 3: move directory with files linux
how to move a folder/Directory in Linux with files
#sytex
mv /path/to/source /path/to/destination
#example
mv Reports tools/Reports
Example 4: linux move files one directory up
mv myfolder
Example 5: how to move file in directory in linux
mv file dir
Example 6: how to move file from one directory to another in linux
mv file1 /tmp