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
mv: missing destination file operand after '/home/az_123/ubuntue.pem' Try 'mv --help' for more information. – user1648715 Nov 11 '22 at 06:58
sudo mv /home/az_123/ubuntue.pem <destination>
. Did you trymv help
then? – Artur Meinild Nov 11 '22 at 07:00