Phani
Phani

Reputation: 29

How to move a .tar.gz file from one directory to another directory

i have a file latest.tar.gz i have to move this file to another folder.

example: file is in this path root/home/phani

     i have to move this file to root/san/newwebsite/

am new to centOS pls help me grt out of from this.

Upvotes: 2

Views: 23764

Answers (1)

Roland Illig
Roland Illig

Reputation: 41617

In a shell window, type:

 mv /root/home/phani/latest.tar.gz /root/san/newwebsite/

Upvotes: 6

Related Questions