2

I am able to move files one directory up by using the following command:

mv * ..

but is there a way to move files two directories up?

Catherine
  • 16,339

4 Answers4

8

Is this a trick question?

mv * ../../
Eimantas
  • 398
5

I may be missing something obvious here, but I'm pretty sure you can do:

mv * ../..

To move something up two directories

Hugh
  • 1,201
2

Does this work?

mv * ../../
1

Try this to move two directories up

mv * ./../../

manav m-n
  • 353