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
  • 26,018

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,333