0

I'm using this command:

sudo mv /home/az_123/ubuntue.pem

I'm getting the following error:

mv: missing destination file operand after '/home/az_123/ubuntue.pem' Try 'mv --help' for more information
Artur Meinild
  • 21,605
  • 21
  • 56
  • 89

1 Answers1

0

mv needs you to define both a source and a destination. You're getting an error because you did not enter a path for the destination.

Use the following syntax:

sudo mv /path/to/source /path/to/destination
Nmath
  • 12,105
  • 8
  • 25
  • 54