user2915882
user2915882

Reputation: 69

How to move directory via SSH?

I want to move a the whole 'includes' folder (whole folder with all its files and subfolders) that is located on /site/«HERE» to one folder up (..) via SSH. Can anybody please tell me how to do that?

Thanks

Upvotes: 4

Views: 25271

Answers (2)

Naser Nikzad
Naser Nikzad

Reputation: 941

If you are logged in already, try this

mv original_file new_name

Upvotes: 0

mnagel
mnagel

Reputation: 6854

ssh user@server mv /site/includes /

Upvotes: 6

Related Questions