Book Image

Linux Shell Scripting Essentials

Book Image

Linux Shell Scripting Essentials

Overview of this book

Table of Contents (15 chapters)
Linux Shell Scripting Essentials
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Moving and copying files


We often need to copy or move files from one location to another in order to arrange files according to the need. We also can copy our computer data to an external drive or another computer available locally or remotely in order to keep the backup of the important data.

Moving files

Moving regular files and directories is useful when we want to keep exactly one copy of the data at a new location. The mv command is used to move files from one location to another.

The syntax of using the mv command is as follows:

mv [option] source... destination

Here, source is the file or directory to be moved. Multiple source files can be specified and destination is the location in which the files and directories should be moved.

Some of the important options of the mv command are explained in following table:

Option

Description

-n

Don't overwrite an existing file

-i

Prompt before overwriting an existing file

-f

Don't prompt while overwriting an existing file

-u

Move...