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